recent answers
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
Transport error (#404)
I think it is not php related. A 404 error means that a requested page does not exist.
What page do you request? Is it a file or some mod_rewrite?
What page do you request? Is it a file or some mod_rewrite?
answered by Not Registered on 30 October 2008 12:04
- PHP Download error, Not Registered
- while calling a php script from another, Not Registered
- Why is this happening?, Not Registered
- what does this mean, Not Registered
- Fatal error: Cannot redeclare is_rtl() , Not Registered
- Fatal error: Call to undefined function:, Not Registered
- plz solve this , Sajid Ali
- What does this error message mean?, Not Registered
- Sending mail error, Not Registered
- syntax error close to a double quote (") - none on page, Not Registered
- 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... - browser cannot open php files
why doesn't anybody answers seem to answer this in any foum?























