Hi,
Trying to learn PHP. Need some help with arrays.
Trying to make an array with class objects that I can search.
<?php
class Name
{
var $FirstName, $SecondName;
function __construct($FirstName, $SecondName)
{
$this->FirstName = $FirstName;
$this->SecondName = $SecondName...
Hi,
Have tried the following:
if($MyDataBase->query("select * from users where UserId='$UserId' and Password='$UserPw'")==0)
{
printf("<br/>%s<br/>",ShapeString(UNKNOWN_USER_OR_PASSWORD));
}
else
{
$MyDataBase->query("update users set NumberOfVisits = NumberOfVisits + 1 where...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.