Hello again,
I have a question with passing variables in the same page...
I have this code
<?php
mysql_select_db($database_clients, $clients);
$query_Recordset1 = "SELECT borClientInfo.client_id, borClientInfo.client_company, borClientInfo.client_service, borClientInfo.client_date, borClientInfo.client_email, borClientInfo.client_name FROM borClientInfo WHERE borClientInfo.client_id";
$Recordset1 = mysql_query($query_Recordset1, $clients) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
$client_id = "0";
$row_Recordset1['client_id'] = $client_id;
?>
and I want the client_id to be changed when I click a link...
here is the link code...
<a href="images/pic_1_1_e.jpg" target="siteport" onClick="window.open('navbar/sitePort1.html' , 'portnav', 'portnav')" id="1" onMouseDown="$client_id=1">
I have this link changing a picture in a frame then it loading a nav bar in a frame aswell, but I want this to also change the client_id to a certain number so I can change some dynamic text on the page.
If you like to take a look at what im talking about go to www.bestonlineresults.com and you see the box on the right and when you click one of the "Featured Projects" a navbar comes up and the picture changes.
You also see some empty space under the box. That is where I want the dynamic text to be.
Thanks.