Everything posted by kitcorsa
-
repeat the same informtion throughout a website
oh right so its better to include a file throughout the site to bring in the name etc instead of including a file which contains a feu variables and then echoing then into the site into <h1> tags and <div>'s ?
-
folding pull corner turn pagea
tried the one above and it works well
-
Drop down menu
i use ADxMenu its awsome!!!! google ADxMenu and you will find loads.... simple to use CSS based drop down or popout if side menu etc
-
repeat the same informtion throughout a website
im looking to make a website where (for example) the name of the business is at the top of the website in a header banner.... the name is also repeated though out the site in the text on the site etc. My header banner is in a php file which i then include into the main page ie index.php page where the text etc is.... my my question is.... is there a way of including a file for example that holds information ie the website name so if i change the the name of the website it will change the whole website where the name is used.... ie $name=mysite and in the text i would write welcome to $name. $name is a fictional site just made up...... etc would i just have to create a file with all my variables ie $name and then includeonce this file into everypage of the site?? ps no database involved
-
folding pull corner turn pagea
any other ideas or recommendations from people?
-
Help please im very new
i used the book Designers guide to CSS to learn CSS i then self tought my self other thing the book doesn't go into by searching google and asking on here and learn basic PHP and JAVA just buy searching again.
-
folding pull corner turn pagea
found this so far but not tested http://www.webpicasso.de/blog/pageear-free-peel-away-ad/
-
folding pull corner turn pagea
http://www.labelprintingservice.com/ like this but not flash
-
folding pull corner turn pagea
ive seen a feu sites with top corners that can be pulled to reveal some information.... how can these be done?? ive see some flash and some non flash examples..... id like to make a non flash one if possible.
-
add the date and time to a form
whoops sorry it is working just going in the junk mail not the inbox!
-
add the date and time to a form
yeah thats ok my server is in the same time zone and its displaying the right date but thanks for the addvice. how do i send a copy of the emal to the email address inwhich the uses entered into the form?? ive tired this: $email = $_POST['email'] ; gets the varible from the form mail("myemailgoeshere.com, $email", "Message Subject Here", "$message", "From: $email"); but this doesn't seem to send the mail to the varible!? mails comes to me ok though
-
add the date and time to a form
i managed it an easy way. i just added the following $date = date("d/m/y"); then added $date to where i wanted the date to display.
-
add the date and time to a form
i have created a form that sends me and email with details that have been entered into the form etc. i want the form to ALSO email the date and time inwhich the form was submitted. i belive ill have to add something to my sendmail.php page which is the poage that gathers the varibles from the form and creats the message and send the mail... can anyone help... its probally simple
-
copy files from one folder to another
i hope someone can help me out here.... i have 2 websites... one site is a online catalog/showcase of all the items that are instore and the other is an online sales room. both site run independant to one another but are built in the same format (one just have the checkout function turn off). What im trying to do is copy all the item from one site to the other at a click of a button. so far ive managed to get the items to copy from one site to another using a SQL code which basically imports all item data from one database and adds to the other. This works well. how ever this doesn't copy image information just the image name thats in the database. what im after is a button that will copy all image from one image folder on the server to another. This should also check if the image already exsists and if it does to skip and not overrid the image. is this possible??? both site are on the same server but other in there own subdomain.
-
open source photo website
istock looks good like might do that as well as my own site! cant hurt TBH
-
open source photo website
http://www.turnkeyforms.com/photo-stock-site.html this is a little over kill as well
-
open source photo website
http://www.maianscriptworld.co.uk/ the gallery here is perfect but you cant download the images after sale it just for printing and selling and shipping close but yet so far.
-
open source photo website
It doesn't seem to be a simple task to ask this.... there plenty of stock image site so the software is out there... just need to find an opensource one. zencart can do it but id have to add each image one by one so would take hours but thats one free way. Maybe with the easy populate it might be faster but im not sure if it adds the image as downloadable.
-
open source photo website
you only get 100 photos for that and it doesn't allow for auto download after sale of photo. its £177 for 2000 photos!
-
open source photo website
yeah but its like £100 dont think ill make that back TBH looking for some like that but free or alot cheaper
-
open source photo website
something like http://www.ktools.net/photostore/
-
open source photo website
Hi... one of my hobies is a photography and i have a range of photos. Some photos i have had published in newspapers and used by friends of mine for website and in adverts etc. what im thinking of doing is putting my photos online in a photo gallery type site where people can view and download my images. Id like my images to be chargable abd payable through paypal. Also ill do some free royality free images etc also. id also like the site to add a watermark auto aswell. Anyone know of a piece of software / code thats opensource??? im used to zencart but would take hours to list each pic 1 by 1.
-
community wedsite
im looking to make a community website for my local area... for this i would require the following. The site needs to be Open Source and FREE Needs to be CSS template Driven (like phpbb or zencart) Must allow the public the register and contribute news etc (all is monitored and authorized by admin) new section can be added and privliges set but admin ie about us page is just an info page but local news is contributed by admin and users. A local business database where companies can add there business to the listings a banner maganger so adverts can be places and tracked... ie view and click tracking. any ideas?? i looking at joomla and drupal but id like to know if anyone uses these and know if they can d the above?? Thank you
-
list and link files in a folder
working i had to change line if ($extension == "ext" OR $extension == "EXT") // is extension ext or EXT ? changing ext to pdf or php etc
-
list and link files in a folder
ive tried this but cant seen to get it to work. <?php $current_dir = "$DOCUMENT_ROOT"."box/"; //Put in second part, the directory - without a leading slash but with a trailing slash! $dir = opendir($current_dir); // Open the sucker echo ("<p><h1>List of available files:</h1></p><hr><br />"); while ($file = readdir($dir)) // while loop { $parts = explode(".", $file); // pull apart the name and dissect by period if (is_array($parts) && count($parts) > 1) { // does the dissected array have more than one part $extension = end($parts); // set to we can see last file extension if ($extension == "ext" OR $extension == "EXT") // is extension ext or EXT ? echo "<a href=\"$file\" target=\"_blank\"> $file </a><br />"; // If so, echo it out else do nothing cos it's not what we want } } echo "<hr><br />"; closedir($dir); // Close the directory after we are done ?> dont get any errors but i dont get a list of the file either