Hello everyone.
This is an example of my problem
I have this code in a page:
printf("
<tr><td valign='middle' align='center'><b>%s</td>
<td valign='middle' align='center'>%s</td></tr>\n"
,$myrow[0],$myrow[9]);
And this in a config.php page included in the above:
$sqlID='$myrow[0]';
$sqlTitle="myrow[1]";
Is there a way to have the main page like this:
printf("
<tr><td valign='middle' align='center'><b>%s</td>
<td valign='middle' align='center'>%s</td></tr>\n"
,$sqlID,$sqlTitle);
Thank you all in advance.