Hi i wanna ask a question. I am trying to create an image on fly, please do
help me , following is the code.
*File Name : Font.php
Code: *
Image Creation
var xmlhttp;
function showPic()
{
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
{
alert ("Browser does not support HTTP Request");
Done. Thanks for letting me know about that.
> kesavan trichy rengarajan wrote:
>
> > could be rewritten as:
> > mysqli_stmt_bind_param($submitadmin, "isss", $numrows, $admin,
> > sha1($password), $email);
>
> Turning on E_STRICT in PHP 5.3 will show
>
>PHP Strict Standards: Only variable
kesavan trichy rengarajan wrote:
> could be rewritten as:
> mysqli_stmt_bind_param($submitadmin, "isss", $numrows, $admin,
> sha1($password), $email);
Turning on E_STRICT in PHP 5.3 will show
PHP Strict Standards: Only variables should be passed by reference
This is also true in earlier v
That worked, thanks!
> Remove the quotes around the variables in all your statements.
> For example, this statement:
> mysqli_stmt_bind_param($submitadmin, "isss", '$numrows', '$admin',
> sha1('$password'), '$email');
>
> could be rewritten as:
> mysqli_stmt_bind_param($submitadmin, "isss", $numro
Remove the quotes around the variables in all your statements.
For example, this statement:
mysqli_stmt_bind_param($submitadmin, "isss", '$numrows', '$admin',
sha1('$password'), '$email');
could be rewritten as:
mysqli_stmt_bind_param($submitadmin, "isss", $numrows, $admin,
sha1($password), $email
Hello everyone, I have a problem.
I use the following to *try* and insert data into my MySQL database...
//Variables come from a form
$username= $_POST['username'];
$password = $_POST['password'];
$email = $_POST['email'];
//Connect to the database
$connect = mysqli_connect("$hostname", "$dbuse