?lang=XX in the url every time only the first time you enter how can i make it show it even though it doesn't have that.
- Code: Select all
<? if (($_GET['lang']) == 'en')
{
$error = 'Please fill in the requiered fields';
$firstname = 'First Name: ';
$lastname = 'Last Name: ';
$companyname = 'Company Name: ' ;
$companytitle = 'Title: ' ;
$email2 = 'Email: ' ;
$telephone = 'Phone: ' ;
$interest = 'Service of Primary Interest: ' ;
}
else if (($_GET['lang'] == 'es'))
{
$error = 'Por favor llena los campos obligatoios marcados con un asteriscos.';
$firstname = 'Nombre: ';
$lastname = 'Apellido: ';
$companyname = 'Nombre de Compañia: ' ;
$companytitle = 'Titulo: ' ;
$email2 = 'Correo Electronico: ' ;
?>

<br><br>Post edited by: GreyHead, at: 2008/01/04 12:15