Jump to content

Passing variables


cmb

Recommended Posts

i want to pass 2 variables through the url and the one im having trouble with is passing the variable that comes from my mysql_fetch_row statement the way i have it now just pass the value array through and not the actual piece of data that i want

            <?php

//adds database login information
include_once "connecttodatabase/database.php";
	$id = $_GET['id'];
	$query = "SELECT c_day_entered FROM Comments WHERE pid = $id UNION SELECT wv_day_entered FROM walk_in_visit WHERE wv_pid = $id UNION SELECT day_entered FROM first_visit WHERE fv_pid = $id ORDER BY 1 DESC" or die ('Error With Database ' .mysql_error());

	$result = mysql_query($query) or die("Query failed ($query) - " . mysql_error());

	while($row = mysql_fetch_row($result)){
		echo "<h2><a href='repop.php?id=$id&date=$row'" . $id . $row['0']. ">" . $row[0] . "</a></h2>";
		echo "<br />";
	}

	// disconnect
	mysql_close();

		?>
                      

Link to comment
Share on other sites

Looking at it again, do you really mean to have $row . $id . $row['0']?  That would result in something like "array511".

 

Yes it does display with the list of dates and when i put this in the place of $row['0'] it doesn't show any results then

echo "{$row[0]}";

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.