Recent content by cearlp

  1. C

    Need help with some php code

    What is in error with the following snippet of code? $y = 0; //counter $s_first_name = ''; $s_last_name = ''; $s_email = ''; $sql = "select * from members "; $result = conn($sql); if (mysqli_num_rows($result)){ echo "<table align='left' cellpadding='0'...
  2. C

    mysqli_query in PHP 8.1.2

    Is Update valid in the sql statement in mysqli_query? Coding is like this: $con=mysqli_connect(host, user, passwd,database); Connection is okay. $sql="update members set fname = 'fred', lname = 'smith', addr = '123 some street' where memid = 150" $res = mysqli_query($con, $sql); I get...
Back
Top