difference between php4 and php5(versions)
Moderator: General Moderators
difference between php4 and php5(versions)
hi to all........
i have problem with PHP vesion....
plz solve my problem....
recently i installed PHP5, b4 am using PHP4.
but in that PHP5, some fetures of my project r not working , which r absolutely working in PHP4....
plz tell me the reason urgently....(plzzzzzzzzzzz it is very urgent)
is it sessions problem????
thanks in advance
madhu
i have problem with PHP vesion....
plz solve my problem....
recently i installed PHP5, b4 am using PHP4.
but in that PHP5, some fetures of my project r not working , which r absolutely working in PHP4....
plz tell me the reason urgently....(plzzzzzzzzzzz it is very urgent)
is it sessions problem????
thanks in advance
madhu
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
Re: difference between php4 and php5(versions)
It's hard to say what the problem is if you don't post your code or some errors that are being logged/shown at least.via aol translation, madhu wrote:hi to all........
i have problem with PHP vesion....
please solve my problem....
recently i installed PHP5, before am using PHP4.
but in that PHP5, some fetures of my project are not working , which are absolutely working in PHP4....
please tell me the reason urgently....(please it is very urgent)
is it sessions problem????
thanks in advance
madhu
difference between php4 and php5(versions)
hi
here am giving the site url, plz c that.....
http://www.bsepaper.com/bsepaper/login.php(NOT WORKING)
http://203.199.211.212/thehindu/login.php(WORKING)
FOR BOTH SITES:
----------------
username:h@yahoo.com
password:12345678
n bsepaper, i installed php5,in hindu it is php4.
now problem is when u login, it will open the site, inthat click on that page which contains some articles.click on any article,in bsepaper it is not showing that article and it hindu it is displaying that article.
plz c n reply to me ASAP....
thanks in advance
madhu
here am giving the site url, plz c that.....
http://www.bsepaper.com/bsepaper/login.php(NOT WORKING)
http://203.199.211.212/thehindu/login.php(WORKING)
FOR BOTH SITES:
----------------
username:h@yahoo.com
password:12345678
n bsepaper, i installed php5,in hindu it is php4.
now problem is when u login, it will open the site, inthat click on that page which contains some articles.click on any article,in bsepaper it is not showing that article and it hindu it is displaying that article.
plz c n reply to me ASAP....
thanks in advance
madhu
- Maugrim_The_Reaper
- DevNet Master
- Posts: 2704
- Joined: Tue Nov 02, 2004 5:43 am
- Location: Ireland
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
Re: difference between php4 and php5(versions)
Please can you stop using the AOLspeak? A good portion of our visitors are not native english speakers and it's hard to read. It certainly takes me twice as long to read, makes me think you're lazy and puts me off answering your thread constructively.madhu wrote:hi
here am giving the site url, plz c that.....
http://www.bsepaper.com/bsepaper/login.php(NOT WORKING)
http://203.199.211.212/thehindu/login.php(WORKING)
FOR BOTH SITES:
----------------
username:h@yahoo.com
password:12345678
n bsepaper, i installed php5,in hindu it is php4.
now problem is when u login, it will open the site, inthat click on that page which contains some articles.click on any article,in bsepaper it is not showing that article and it hindu it is displaying that article.
plz c n reply to me ASAP....
thanks in advance
madhu
difference between php4 and php5(versions)
i dont know what u didnt understand in that message.............
any how, plz login to that sites.
then click on that pages...........
it is not working in bsepaper and it is working in hindu.
i think am clear in this issue.
plz give reply if u didnt understand
any how, plz login to that sites.
then click on that pages...........
it is not working in bsepaper and it is working in hindu.
i think am clear in this issue.
plz give reply if u didnt understand
- Maugrim_The_Reaper
- DevNet Master
- Posts: 2704
- Joined: Tue Nov 02, 2004 5:43 am
- Location: Ireland
plz is not an english word. Check a dictionary - the spelling is "please".
Try to understand - I cannot access your first link, it times out for me as a network error. In the absence of any other way of finding a problem, we need to see the source code. It is difficult if not impossible to find problems without source code, or at a minimum the details of any and all error messages.
Two links is not enough.
Try to understand - I cannot access your first link, it times out for me as a network error. In the absence of any other way of finding a problem, we need to see the source code. It is difficult if not impossible to find problems without source code, or at a minimum the details of any and all error messages.
Two links is not enough.
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
Re: difference between php4 and php5(versions)
Seriously... stop using the AOLspeak... By that I mean: u, r, plz, cuz, hlp, n, b4.... Take this as a polite warning.madhu wrote:i dont know what u didnt understand in that message.............
any how, plz login to that sites.
then click on that pages...........
it is not working in bsepaper and it is working in hindu.
i think am clear in this issue.
plz give reply if u didnt understand
hahaha, aolspeak...
one of the very common problems in swithing from 4 to 5 is the auto globals.
thats means go through your documents and replace $HTTP_SERVER_VARS with $_SERVER
if your using post data, dont use $input field, use $_POST['inputfield'
same with url variables, dont just use $url_var, use: $_GET['url_var']
one of the very common problems in swithing from 4 to 5 is the auto globals.
thats means go through your documents and replace $HTTP_SERVER_VARS with $_SERVER
if your using post data, dont use $input field, use $_POST['inputfield'
same with url variables, dont just use $url_var, use: $_GET['url_var']