• This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn more.

Search results

  1. R

    RESOLVED simple sql query doesn't work

    SOLVED - even it is just one Number the value is an array. Converting the array with mysqli_fetch_assoc did the job.
  2. R

    RESOLVED simple sql query doesn't work

    Hi, hopefully not again a "dummy in front of the screen" question... The simple sql squery select count(*) from view_test where Geschlecht = "M" or alternative select count(*) from view_test where Geschlecht = 'M'; works well from sql side and returns the right count. If I insert this into a...
  3. R

    QUESTION Display a complex link coming from database

    grrr - problem in front of the screen - THX!
  4. R

    QUESTION Display a complex link coming from database

    The appetite comes with the food... I'm trying to display a table with data comming from a database. That work quite well, i.e. displaying a table with colums like: date, event, address. All the datas coming from a databse view with many "concat" colums, like address is a concat from street...
  5. R

    RESOLVED Display a picture together with SQL-query data

    That works like a charm - THX! How stupid can somebody be - missed the echo and did not see that...
  6. R

    RESOLVED Display a picture together with SQL-query data

    Hi, that's more or less the way I've tried... If I copy your example - regardless the path doesn't exist, the syntax should be right - I get the first error: "unexpected < at line 19" (which is the "image line") if ($result->num_rows > 0) { // output data of each row while($row =...
  7. R

    RESOLVED Display a picture together with SQL-query data

    I'm trying to display data from an external database inside a WordPress page. So far so good with Woody Snpippets that works quite fine. I can display Firstname, Lastname and Year of birth from our sport club swimm team members. Additional I would like to display a picture of each member, which...