Hello all, first post here.
I'm a newbie in php code, but declaring a simple variable I thought I could do, but apparently not. I cannot figure out which rule I broke, but I keep getting an error message in line 4 of the following code for an unexpected t variable:
<?php
ob_start();
$host="localhost";
$username="";
$password="";
$db_name="member_login";
$tbl_name="members";
I wont bother you with the rest of the code. In case there it says a different line when I post this, my error is on the line for username, but for the life of me I can't figure out how I messed that up.