Hi all,
I've made a mistake and developed in php5 whereas our hosts only run php4 and have only worked through a book on php5...
Is it ok to change this from version 5 code:
$quoteid = $quote->quoteid;
to this:
$quoteid = quoteid($quote);
so that i can run my scripts on a host running version 4 of php?
I have been working through all my code, trying to replace anything that won't work in version 4. I've done loads and loads of it but i still can't get any results from the database and this is one of the things I can't seem to find an answer to elsewhere.
I've been learning out of a book for too little time and the deadline is looming... Thanks goes out to all for even reading this far.
Regards
Sheldon