Jump to content

drknife

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

drknife's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. para11ax: Thanks that did what I wanted.  The other code helped to for me to see how to create an array a different way. Now I will try to get this code streamlined. Thanks.
  2. I want to take the pagelist field from my mysql database an create an array from that  OR chose a random row from the pagelist field/column. The above code resulted in the following error [tt] Parse error: syntax error, unexpected T_VARIABLE in host/random.php on line 6 [/tt]
  3. I have been trying to make something do this for hours.  I have scoured the net looking for the question previously asked. I found nothing that worked.  I found this not very useful posting where the poster said they fixed the error I keep having but did not post the fix. http://codewalkers.com/forum/index.php?action=displaythread&forum=sqlhelp&id=2493&realm=default so I ask with all humbleness and desparation: How do I take the data from one field in a table in a mysql database and create a php array with that data? Or the real goal is to select a random entry from the pagelist field to load a random webpage? I have the following code in use [tt]<?php //connect to database $dbh = mysql_connect ("localhost", "user", "pass") or die ('I cannot connect to the database because: ' . mysql_error()); mysql_select_db("dbname"); $sql="SELECT pagelist FROM pagelist"; $result = mysql_query($sql) or die(mysql_error()); $input = mysql_fetch_array($result); while($row = mysql_fetch_array($result)){ //echo $row['pagelist']; //echo "<br />"; } echo $row[0] ; echo $row[1] ; echo $row[2] ; //random page //$input = array("index.html", "index2.html", "gwbush.html"); $page = array_rand($input); echo $input[$page] . "\n"; ?>[/tt]
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.