Jump to content

[SOLVED] don't show anything?


nec9716

Recommended Posts

Why do you have PHP tags inside PHP syntax?

 

if ($action == 'edit'){

echo "<table width='100%' align='center' cellpadding='0' cellspacing='0'>

<tr>

<td>value="<?php echo $tpname?>"</td>

</tr>";

}

 

Without me really checking your other code...Try....

 

<?php

if ($action == 'edit'){
echo "
<table width='100%' align='center' cellpadding='0' cellspacing='0'>
  <tr><td>value=\"$tpname\"</td></tr>";
}

?>

 

Also...where's the closing table tag?

 

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.