Tag Archives: Nbsp

Flash Contact Form

I just purchased a Thumb website template through http: //www. graphicworx. us/details. phpgid=81& pid=201. Good template, and the fair price, Once I purchased and also opened in Flash, I found out the contact us form was simply for show and decided not to actually do anything. POST dont blame graphicworx, but does anyone know how to make a speak to form in flash that will send me a strong email when an individual uses it, in addition to send them a Thanks email Many thanks. Hello graphicsdude, I found this tutorial to the interweb which is very good except for this uses short tags (< instead of < php) and won’t directly access the $_POST array ($name as opposed to $name = $_POST’name’; ) not your your first point, sending whomever who contacted a person an e-mail will you should be a case of getting code to e-mail anyone and code to e-mail them. Easily done in the event you get one portion working. All the best. Hmm, I’ll check that away, thanks. I really dont know very much about PHP, but I will take a look. Many thanks. Basically all you do is assigning a number of PHP variables … Continue reading

Posted in Web Design | Tagged , , , , , , , , , , , , , | Leave a comment

just out of curiosity

Is there methods to get a variety to post information into the same page that it’s on I used to be thinking something like this. don’t understand why it is not working. < html> < head> < /head> < body> < php $a = $_get ‘input’; > < variety action=" sample. php" method=" get" > < enter type=" text" name=" input" size=" 10" > < enter type=" submit" value=" display" > < /form> < php reveal ‘$a’ > < /body> < /html> or maybe methods to get this details to post into the page without refreshing the page You ought to be using $_POST as opposed to $_GET (and they are as shown… you had it typed wrong). Without specifying " action", it will eventually assume the identical file (or script) because itself. PHP: < html> < head> < /head> < body> < php$a  =  $_POST’input’; > < form  method=”post”> < input  type=”text”  name=”input”  size=”10″> < input  type=”submit”  value=”display”> < /form> < php  echo  ‘$a’  > < /body> < /html> acceptable well, maybe you can help me together with my final goal… i need to make an application that will allow people to create their own internet business cards. sort … Continue reading

Posted in Web Design | Tagged , , , , , , , , , , , , , , , , , | Leave a comment

Protecting Images You Own

post set the position with the top left next corner. the id=" image" div may be for the image the particular id=" coverpannel" may be for the link. and where dreamweaver i can’t help, only value. Rob… Try this: Create this PHP script, call it " photograph. php": PHP: < php//  path  to  your  images  (where  they  are  stored). //  include  the  trailing  forward  slash  /$path=”/photos/”; $filename=$path. $_GET’p’; //  Get  the  dimensionslist($width_orig,   $height_orig)  =  getimagesize($filename); //  Resize  if  needed  (in  this  example,   full  size …   no  reduction). $width=$width_orig; $height=$height_orig; //  Example  of  half-size  decrease. //$width=$width_orig/2; //$height=$height_orig/2; //  Resample$image_p  =  imagecreatetruecolor($width,   $height); $image  =  imagecreatefromjpeg($filename); imagecopyresampled($image_p,   $image,   0,   0,   0,   0,   $width,   $height,   $width_orig,   $height_orig); //  Outputheader(‘Content-type:   image/jpeg’); imagejpeg($image_p,   null,   100); //  Clean-up  Memoryimagedestroy($image_p); > Now take advantage of this on your HTML pages for every image… < img src=" photograph. phpp=mypic. jpg" > The supply of the image shall be unknown, but your image will look. (this may be for JPG or JPEG images only). . that is a lovely idea mlseim I’ll try this tomorrow and show you. I know what you necessarily mean, … Continue reading

Posted in Web Design | Tagged , , , , , , , , , , , , , , , , | Leave a comment

Text Formatting problem

My site is known for a PHP based source page which creates a fresh file on the site. My problem is the fact when I submit something coming from a text area, PHP removes many of the line breaks in advance of adding it into a file. So that as you move description I set up is properly formated, one that viewers read is often a single long section. Is there any tool for fixing that Another problem is the fact if I put a " on the name of your file, fopen() automatically adds a backslash just before it. (ie Bob’s stuff results in being Bob/’s stuff) Anyone know why when you can stop either of these from happening With thanks, Theodore The backslash thing refers to this PHP receive: $content = stripslashes($content); You need to use that before everyone save it towards file. The line breaks is really a little tougher to resolve. This actually depends on how you edit the content. I usually do it this way…. but it’s my particular preference. This is to save your content… textarea from a form. PHP: < php //    You  have  a  whole  textarea  from  a  form … //    … Continue reading

Posted in Web Design | Tagged , , , , , , , , , | Leave a comment

a few questions

hi i used to be wondering if any one could tell me where to find a script that’s free if feasible. that would please let me post a image link. And allows me align how many each row and the number of per page. then when which number is hit puts them in page 2 and 3 etc .. i dont need much features like coments or anything. i really want it to be like that one on this page www. nekkidtees. com Do you have any PHP experience You can make a script your self. Below is definitely example… (I didn’t actually test it). Create a plain text report, call it " catalog. txt" and fill it with one line for each photo. And also the three fields divided by pipes http: //www. site1. commyphoto1. jpgcaption http: //www. site2. netmyphoto342. jpgcaption http: //www. site3. netmyphoto46342. jpgcaption http: //www. site4. netmyphoto345742. jpgcaption for example. Right now, you have a new PHP script in which opens that archive and displays a person’s images. Like this… call it " hyperlinks. php"… PHP: < php //  open  the  report,   put  into  an  range. $file  =  file(“catalog. txt”); //  how  many  across$across=4; //  … Continue reading

Posted in Web Design | Tagged , , , , , , , , , , , , , , , | Leave a comment

Need help in jmapping

Guys WHEN I found a tutorial. Heres the url with more points I included all dependencies and pasted the two scripts in this above document towards my source rule exactly as branded. The text presents itself, but no map. Am I missing an obvious step here Must i need an API key Have no clue whats going on.. Please help!!! Very little, you don’t have an API major, if you’re utilizing Google Maps V3… but it appears they usually are. Give us a link to your actual website page that is not reaching. Likewise, describe what your role is the mapping. For anyone who is the person producing the maps, or will you be trying to show maps from another person’s information. ==================================== For those interested in many ways to pick regions by GPS coordinates for your applications, view the example script WHEN I made below. Everyone drag the gun around, and it can display the coordinates with the ‘X’. You may then add the point with a database. That component is not created, but it shows how the data can be read by the PHP script. Look at the HTML source code, copy/paste it towards your own site (web … Continue reading

Posted in Web Design | Tagged , , , , , , , , , , , , , , , , , , , | Leave a comment

Help! Need a file download option after form submission

May any one understand how to add a record download option after a form has been posted, preferably an inline choice. Are there special conditions that must be met with the particular form Like they have to verify their contact address or something What keeps someone from filling out fake information to acquire the download And what is the download, what kind of file I see your stage. Well its just a PDF ebook, http: //www. myiwdesigns. com/fintrackw/contact The one that says get a free ebook. Right now Concerning a wordpress plugin that does the item but, it shows me error sometimes. I would prefer the download to search t there contact address What is the filetype of your ebook. mob When the file is stored with your website, in any directory somewhere, you may just use a fairly easy PHP script to help download it. Once they click on your link, or submit the form, some sort of dialog box will open " check out or save file". Is that what thinking of Yes fairly… I was more going for when they fill out and submit an application. the file is usually a PDF file. pdf Because I don’t … Continue reading

Posted in Web Design | Tagged , , , , , , , , , , , , , , , , , , , | Leave a comment
Page 2 of 3123