-
Replied To a Post in if condition not executing
To expand on cereal's comment. You may also look into the types of comparison operators. == is Equals. Using this operator will only compare the value. === is Identical. This … -
Replied To a Post in Your Favourite IDE or Editor for PHP
NetBeans user here as long as I care to remember. -
Replied To a Post in Session Logout
In logout.php maybe try to use `unset($_SESSION['username']);` <?php unset($_SESSION['username']); session_destroy(); header("location:index.php"); ?> -
Replied To a Post in Looking to have a Signup with 2 image uploads stored to database
This is how I would do this. Create a form to add everything including the upload for the license and note. Choose what type of formats you want to allow … -
Replied To a Post in Searching using optional parameters
Yes you can use variables to build your query. One way is to build your form, validate whether or not fields in your form are blank and if so do … -
Replied To a Post in help!
The most obvious place is the manual itself you can view them online or download it in multiple languages. [Click Here](http://php.net/docs.php) I also found the O'Reilly php books very helpful … -
Replied To a Post in help plz..before loading page check if record exists redirect else continue
Hi Wikit. If you have found a solution please mark this thread as solved. -
Replied To a Post in php thumbnail script run on server but not on local
Be sure the path to your images are correct and that the images actually exist. What is happening with the code? Are you getting just a broken image error? If … -
Replied To a Post in Is it possible to get current Time from the local client PC in PHP
I don't think it is possible using PHP since PHP is server side only. It will only return the time and date of the server. You may need to use … -
Replied To a Post in php thumbnail script run on server but not on local
As pritaeas mentioned, it is probably a misconfiguration on localhost. Try to run this code in localhost: <?php if ( extension_loaded( 'gd' ) && function_exists( 'gd_info' ) ) { echo … -
Replied To a Post in how could i send email to list of email addresses inside a mysql database?
If this is happening to you input your information into your code instead of GMail ports, host and your credentials. Check with your host. Almost all servers have SMTP installed. … -
Replied To a Post in PHP charts / graphs
I usually use GDChart if I need to generate a graph or chart in PHP. Also if you need have a way to manipulate the chart in a browser you … -
Replied To a Post in how could i send email to list of email addresses inside a mysql database?
Yes there are several free alternatives for SMTP and PHP. If your server has PEAR installed you could use that. You can also use GMail or SwiftMailer to send email. … -
Replied To a Post in php and mssql log in problem
Do you have your PHP extensions configured correctly? Also I am not sure what version of PHP version you are using or your OS, but PHP support for MSSQL is … -
Replied To a Post in Scrollable website
This can be done using [Bootstrap](http://getbootstrap.com). Have alook at this [fixed top example](http://getbootstrap.com/examples/navbar-fixed-top/). -
Replied To a Post in I Can't browse my site online.
Make sure you uploaded your files to your public folder.
The End.