Related Articles
PHP – Write to File – file_put_contents()
You can write variables to a file with file_put_contents(). If the file pointed to does not exist it will be created. By adding FILE_APPEND this will append data to the created file, if not the […]
PHP Project (Intermediate) – Edit Picture Data in Gallery with MySQL Backend
With this project you will be able to edit the MySQL records that relate to your pictures in your gallery. You use the pic_id identifier to select and update specific MySQL records. Previous Classes in […]
PHP – elseif Statements
elseif statements allow you to check to see if any of a number of conditions are true before failing out to the else in an if statement.
Be the first to comment