Jump to content

Werid Template System.. See if you can help me out


Deanznet

Recommended Posts

Okay... im trying to run a mysql command from here but this has a werid template system. Not sure if can help or not.

 

 

Okay so  if i do

<?php echo $userInfo[$TbUsers->col_uEmail]; ?>

 

It will echo the email.. Im trying to use the email to run a mysql command.

 

<?

$result = mysql_query("SELECT * FROM pbs_users
WHERE uEmail='EMAILHERE'");

while($row = mysql_fetch_array($result))
  {
  echo $row['uFName'] . " " . $row['uLName'];
  echo "<br />";
  }

?>

 

See.. i keep getting errors.. how would i do it?

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.