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
https://forums.phpfreaks.com/topic/244445-passing-variables/
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
https://forums.phpfreaks.com/topic/244445-passing-variables/#findComment-1255554
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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