- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 7
- Posts with Upvotes
- 7
- Upvoting Members
- 6
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
My name is Richard Walker. I am married with three beautiful children and a loving wife. I am 28 years old and was born and raised on the outback of Australia. I now reside with my family on the South East Coast of Queensland Australia where the weather…
- Interests
- Programming PHP, Golf, Researching and learning, Playing PS3 in spare time, Meeting new people online.
- PC Specs
- Aspire SA85 XPH MHD12504 Intel(R) Pentium(R)4 CPU 3.06GHz 3.07GHz, 1.00GB of DDR RAM Nvidia Ge-force…
67 Posted Topics
Hi everyone, I am only new here, and quite looking forward to getting to meet with a lot of you. But right now, I have a very frustrating problem that has only started today. Every time I start my Firefox browser, it starts to open up multiple tabs by itself, … | |
Re: Hi Beeej21, I used to have this problem aswell. Try changing the position from relative to absolute. Also make sure to save your CSS sheet before testing it in the browser as some times this can be overlooked. Once your browser loads, if there is still no image, try refreshing … | |
Re: Hi Charlie, I don't actually have an example for you, but you can check this site out [URL="http://www.freeprogrammingresources.com/phpsrc.html"]Free Programming Resources[/URL]. These guys have php souce code for just about anything. Hope it helps:) | |
Re: Hi danijel, sounds like a problem with permissions. Can you please post the code from the script you are using for upload? | |
Hi all, I have a friend who is having troubles with her computer. She has told me that it keeps shutting down for no reason and only started doing this recently everytime she opened MSN. She has done a registery clean, virus scan and defrag and the problem still persists. … | |
Hi all, I have a friend who is having troubles with her computer. She has told me that it keeps shutting down for no reason and only started doing this recently everytime she opened MSN. She has done a registery clean, virus scan and defrag and the problem still persists. … | |
Re: Hi there Cguan, First of all, Yes I am thinking that you can do this, and it will work. However, if you want to use these styles for all links on your whole website (every page), I would be putting these styles into an external style sheet then link that … | |
Re: Hi there ogunfla This link should help you:) [URL="http://www.webtree.ca/windowsxp/repair_xp.htm"]XP Repair[/URL] | |
Re: Hi Boronia, I have noticed that in Line 159 of the above code you have use mysql_numrows(). Please not that this is now depreciated, try changing this to: mysql_num_rows(). If you have coded it this way through all your scripts, then go through and change them to. I hope this … | |
Re: I know that in Australia, PHP is number one for any website. Hardly anyone here uses ASP simply because it costs to much and a pain in the backside to work with, this is why I switched from ASP to PHP. Who is this .net guy to say that nobody … | |
Re: Is this your own DB.php file, or are you trying to use the DB PEAR extension? If it is the PEAR DB file, you need to install PEAR then download and install the DB package, but in saying that, the DB package for PEAR is now out dated and is … | |
Re: Hi cancer10, I couldn't quite understand your question, are you trying to say that how will you know if the customer paid? or do you want to know how to set the paypal gateway up? | |
Re: Hi dami, You need to set your connection credentials. change these lines: private $_host = ''; // DB Connection info # private $_user = ''; # private $_password = ''; # private $_database = ''; # to this: private $_host = 'localhost'; # private $_user = 'Your MySQL Username'; # … | |
Re: You can possibly achieve this by creating a table and setting its width to 100%, this will allow more data to be shown across the page. You can do something like this: $exampleOuput = "<table width=/"100%/"> <tr> <td> ..The ouput code here.. </td> </tr> </table>"; echo $exampleOutput; If you want … | |
Re: Are you using Windows or Linux? If your using Windows, you need to point your php.ini file to your ISP's(your provider) SMTP service. You also need to check with them to see if they allow port 25 to be open, as alot of ISP's close this port off so you … | |
Re: Hi Sam, I have never actually used MS WORD to design websites, but I wouldn't reccoment it. I don't think that the browsers can pass MS WORD documents that well. If you can write fluent html, I would suggest using something like notepad or dreamweaver if you have access to … | |
Re: Hi GLT, What version of Dreamweaver are you using? | |
Re: You don't have to have any programming knowledge to learn PHP, people with knowledge of other languages will just learn quicker. A good knowledge of HTML is reccomended but not necesary:) | |
Re: Try putting single or double quotes around your values like this: $usern1 = "Joe"; $pass1 = "abc"; $usern2 = "Jim"; $pass2 = "lmn"; $usern3 = "Jack"; $pass3 = "xyz"; The form you are using, is it contained on this file, or another file? Can you also paste the code for … | |
Re: Hi scorpionz. I have never built one of these systems, but I have seen them done and know that they can be accomplished using PHP, Java, CSS, XHTML and XML. They can also be built and run on any type of system:) | |
Re: Hi naju, What is the error message you are recieving and what version of php are you using, and are you using it on windows or linux? | |
Re: Hi Squid, I have actually never done this, but yes you are right it can be done. This article should help you out [URL="http://corz.org/serv/tricks/htaccess2.php"]Redirecting and Rewriting with mod_rewrite[/URL] :) | |
Re: Try taking the single quotes away from the zero in this line: if($english_level!='0') change to if($english_level!= 0) :) | |
Re: dami, you are getting this error because DOC__ROOT is an undefined constant. This was also happening in the code you sent me. Try changing the required() calls from this: require_once(DOC__ROOT . '/library/classes/class_dao.php'); to this: require_once($_SERVER['DOCUMENT_ROOT'] . '/library/classes/class_dao.php'); If this doesn't work, then your DocumentRoot path has not been set. | |
Re: Hi jino, The best editor you could proballly get for PHP is Zend Studio. However though it is not free. Its probally the best one I can think of. Hope this helps:) | |
Re: Hi Vai, Usually PHP will make the referrer automatically available in the variable, Have you had a look to see if these variables are available using phpinfo? | |
Re: Are you trying to set variable $a to an array here on line 24: $a="array(".$strt.", "; } else { $a=$a.$strt.", "; If you are, I don't think this will work, because you have it inside double quotes, I think "array()" is being passed as a string and not being defined … | |
| |
Re: are you putting session_start() at the top of all the pages that require the session? | |
| |
Re: Hi scorpionz, Go into your phpmyadmin directory and find a file called config.inc.php. Open this file and find the lines 72, and 73. Set line 72 to 'root' and line 73 to the root password you used when you installed it. If you didn't use a password when you installed … | |
Re: Hi dami, sagedavis is right, error_reporting(0) turns off all error reports, therefore you will not get any errors on that page, instead replace that line with this: ini_set('error_reporting', E_ALL); Then load the page, you should see errors then:) | |
Re: Hi there White Eagle. Being young is the best time to learn IT! Welcome to Daniweb:) | |
| |
Re: Hi yasmin, is there any chance you send me the database.php, login.php and logincheck.php? so I can get a better understanding of this script to help you? My email address is [email]richard@seriah.net.au[/email] :) | |
![]() | |
Re: Hi armend90, This file was encoded by a program called ionCube. Usually if a file has been encoded, then it means the creator doesn't want anyone messing with the code. Where did you get the script from? |
The End.