Jayne Herbert
Server Side Programming (PHP) Course
CITN270 – September 2009

Home - assignment 1 - assignment 2


 

 

PHP - things I would like to achieve / problems I would like to solve

1. How can you ensure that a page that which has been converted from an .htm to a .php does not display an error when a direct link from another web site to the original .htm page is used. Can .htaccess esure that the .php page is displayed instead.

Add this code to .htaccess file

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.+)\.htm$ http://www.cornwallmothgroup.org.uk/$1.php [R,NC]

2. Count how many times a url has been clicked on within a web page, and increment a database field.

3. Include a form in a page that shows requested data without refreshing the whole page - I would like to include my date formatter pop-up form as part of the same page.

4. Convert a text string or number to something else, like a graphic. For example if a company type their name in a field, it would display their logo on the screen.

5. Complex image upload form. Upload image based on the criteria in the form, multiple resizes and saves in different directories. Check file format correct.

6. Select multiple records from a database and delete them.

7. Slide show without changing pages.

8. Back up database from browser.

9. Upload data from a .csv file via the web page into a database

10. Show the PHP code as text in the browser

11. Putting dots on maps dinamically

12. Is it possible to capture a Google page rank and add it to a database

13. Validate a date in the format yyyy/mm/dd in a form

14. Change from filed depended on criteria selected in another part of the form

15. Repeat the data inputted into one field into another field only if the second field is left blank

16. Create a shopping cart including

 

 

 

 


 

 

phpcourse.jayne-herbert.co.uk

Web Design Cornwall