recent answers
PHP Error message.what does it mean?
you have the wrong username / password to use the mysql connection.
You must replace "database usernam" etc. with your own data.
You must replace "database usernam" etc. with your own data.
answered by Not Registered on 15 March 2009 22:19
Notice: Undefined index: languages
This error appears when you try to access an array value and the key is not within the associative array.
Example:
$test = array ("foo" => "bar", "tricky" => "code");
echo $test['foo']; => foo , all fine
echo $test['lanugages'] => error, because there is no key "languages"
Example:
$test = array ("foo" => "bar", "tricky" => "code");
echo $test['foo']; => foo , all fine
echo $test['lanugages'] => error, because there is no key "languages"
Php closing tag displays on screen
No idea. Is your php code executed correctly? Sure there is no typo anywhere?
answered by Not Registered on 26 February 2009 12:37
just error..help me pls
You can´t use function return values directly as an array. This is your code (an example):
$str = explode( "-", $frm['CUSTOM1'] )[1];
$id = explode( "-", $frm['CUSTOM1'] )[0];
You must save the return value of explode in a variable before you use it. Change your code to something like:
$arrTmp = explode( "-", $frm['CUSTOM1'] );
$str = $arrTmp[1];
$id = $arrTmp[0];
HTH
$str = explode( "-", $frm['CUSTOM1'] )[1];
$id = explode( "-", $frm['CUSTOM1'] )[0];
You must save the return value of explode in a variable before you use it. Change your code to something like:
$arrTmp = explode( "-", $frm['CUSTOM1'] );
$str = $arrTmp[1];
$id = $arrTmp[0];
HTH
can't retrive data from mysql database
This could mean you have a problem to set up a mysql connection. Are you sure your username and password are correct?
answered by Not Registered on 17 February 2009 21:21
Can not open website anymore
Try to upload an .htaccess file in your document root like this:
php_admin_flag register_globals on
php_admin_flag register_globals on
my wordpress had an error after changing a theme. How can I fix it?
Sry, I am not a wordpress expert.
I can only tell you the function post_class is missing for some reason...
I can only tell you the function post_class is missing for some reason...
answered by Not Registered on 3 February 2009 19:40
what does this error mean
Please post your full error message.
answered by Not Registered on 3 February 2009 19:39
web site doews not load
In your file "database.php" some code is executed to connect to a database.
The given username/password in this code do not match the mysql server (you gave wrong credentials) and therefore no connection is established.
Ask your mysql-administrator or look for some typos in your username/password
The given username/password in this code do not match the mysql server (you gave wrong credentials) and therefore no connection is established.
Ask your mysql-administrator or look for some typos in your username/password
answered by Not Registered on 19 November 2008 11:22
what does following message mean: Fatal error: Call to undefined function validip () in
your php code calls a function which does not exists. It´s name is "validip". Open all your php files and look for "function validip(", perhaps you just have misspelled it and it should be "valid_ip". Or you have to include a php file, in which the function is defined.
answered by Not Registered on 6 November 2008 9:28
- PHP error, Not Registered
- What shall i do i got this message when submitting my registration form to a website.Im just an ordinary computer user, Not Registered
- session warning, Not Registered
- Undefined index: x_Picture in C:\wamp\www\arun\adcheck1.php on line 25, Not Registered
- I have write script , but i have got error, how to solve that error?, Narasimha murthy Arangi
- What does this mean, Not Registered
- www.tviexpress.com/zoo, Not Registered
- what am i doing wrong?, Not Registered
- Can you help solve unexpected $end, Not Registered
- php error 56, Not Registered
- Can you help solve unexpected $end
Can't really tell without a whole lot of code. But that usually means you're missing a close... - What is: Failed opening 'includes/languages/english/' for inclusion
Yes, please see www.deal-shoe.com - plz solve this
it means that the path that u're using is not correct check the location of the file that u want to... - syntax error close to a double quote (") - none on page
there will be a quote inside another quote. simply change the quote inside the other quote to '... - browser cannot open php files
google wamp and download it. it is a program used to host webservers but you can simply host it...























