Hello:
I am wondering if there are any suggestions on how to pass variable to a div in the following manner:
foreach (array_combine($playerState_array_clean_phase2, $membId_stripped_array_clean_phase2) as $playerState_array_clean_phase2 => $membId_stripped_array_clean_phase2)
{
echo"
<a href=\"#_MultiDataProcessor?Pid=$membId_stripped_array_clean_phase2&Plname=$lname&Pfname=$fname\" title=\"$membId_stripped_array_clean_phase2\"><span style='font-size:1.5em'>$playerState_array_clean_phase2</span></a>";
}
I want to get those variable in a div that looks like:
<div class="iLayer" id="MultiDataProcessor" title="Multi-Player Rating Data">
<div class="iBlock">
<?php
$Player_id=$_GET['Pid'];
$fname=$_GET['Pfname'];
$lname=$_GET['Plname'];
?>
<!--Other code stuff goes here-->
</div>
I appreciate any thoughts on this!
Mossa