Forum Moderators: coopster
<?php
session_start();
require "../config.php";
?>
<?php include('login_functions.php');?>
<trimmed out excess code>
<tr>
<td width="25%" >*<?php echo $label["advertiser_signup_last_name"];?>: </td>
<td width="86%"><input name="lastname" value="<?php echo stripslashes($LastName);?>" type="text" id="lastname"></td>
</tr>
<tr>
<td width="25%" valign="top"><?php echo $label["advertiser_signup_address"];?>: </td>
<td width="86%"><input name="address" value="<?php echo stripslashes($Address);?>" size="30" type="text" id="address"/><span > (<?php echo $label["advertiser_signup_address"];?>)</span></td>
</tr>
<trimmed out excess code>
Please see Terms of Service [webmasterworld.com] and Posting Guidelines [webmasterworld.com] -- coopster
[edited by: coopster at 4:58 pm (utc) on Mar. 10, 2006]
[edit reason] no urls please, please read posting guidelines [/edit]
Somewhere along the line a variable must be getting set since the $label array has an index
$label["advertiser_signup_last_name"]that is showing up and displaying your 'Last Name' text. However the Address, city, state and zip labels of the same nature are not being setup. I'm guessing it is happening somewhere in your included file(s).