Jump to content

roninmedia

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Contact Methods

  • AIM
    ironinmediai
  • ICQ
    116318652

Profile Information

  • Gender
    Not Telling
  • Location
    USA

roninmedia's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. [php:1:b3cecffc86]<? @ $db = mysql_pconnect(\"localhost\"); if (!$db) { echo \"Error: Could not connect to database. Please try again later.\"; exit; } mysql_select_db(\"mysql\"); $manga_sql = \"select * from manga where title is not null order by title desc\"; $manga_result = mysql_query($manga_sql); if (mysql_num_rows($manga_result)) { $manga = mysql_fetch_array($manga_result); echo \"<a href=\"review.php?id=$manga[id]\">\"; echo $manga[title]; echo \"</a>\"; } ?> This is the mysql query that is run on index.php. It displays all the reviews I have in a databse and visitors are then sent to review.php (the code for it shown below) which displays the review they queried. <?php /* just to be safe with register globals */ $id =& $HTTP_GET_VARS[\'id\']; $sql = \'SELECT * FROM manga WHERE id=\'.$id; /* then run the query and get the results etc... */ ?> [/php:1:b3cecffc86] How would I integrate the two codes on to one single php file so the original mysql query and the query that is selected is on the same php page?
×
×
  • 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.