recent answers

Notice: Undefined index: languages

Thumb_up
Thumb_down

0%
0%
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"

answered by Not Registered on 26 February 2009 12:40
source: http://php.net/array

Php closing tag displays on screen

Thumb_up
Thumb_down

0%
0%
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

Thumb_up
Thumb_down

0%
0%
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
answered by Not Registered on 26 February 2009 12:36
source: http://php.net/explode

can't retrive data from mysql database

Thumb_up
Thumb_down

0%
0%
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

Thumb_up
Thumb_down

0%
0%
Try to upload an .htaccess file in your document root like this:

php_admin_flag register_globals on


answered by Not Registered on 17 February 2009 21:20
source: http://php.net/manual/en/ini.list.php

my wordpress had an error after changing a theme. How can I fix it?

Thumb_up
Thumb_down

0%
0%
Sry, I am not a wordpress expert.

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

Thumb_up
Thumb_down

0%
0%
Please post your full error message.
answered by Not Registered on 3 February 2009 19:39

web site doews not load

Thumb_up
Thumb_down

0%
0%
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
answered by Not Registered on 19 November 2008 11:22

what does following message mean: Fatal error: Call to undefined function validip () in

Thumb_up
Thumb_down

0%
0%
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)

Thumb_up
Thumb_down

0%
0%
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?
answered by Not Registered on 30 October 2008 12:04

FirstPrevious 1  2  3  4 NextLast
recent answers

Search
   
Bookmark this page Wong Linkarena Webnews Delicious Technorati Furl Yahoo_myweb Google_bmarks Blinklist Magnolia Windows_live Digg Netscape Stumbleupon Newsvine Reddit Tailrank Spurl Yigg