Everything posted by andrewliu
-
Job Search database
Would I be able to just use wordpress for my job.php page and put it in a div tag so I can align it based on my web preference?
-
Job Search database
Thanks guys! Just what I needed to know. I'll look more into it. edit: do you think there's a tutorial for this somewhere on the web? not sure what keyword to search for.
-
Job Search database
Hello! i'm trying to build a job page for my website, but I was wondering what is the best and economical way to build such a thing where I don't have to create multiple .php files for each position. I'm not too sure about web building but I'm trying to learn. I was wondering how or what I need to do to build a simple job.php and it'll be easy to input the jobs titles I need with links to descriptions without creating tons of other php files? Thanks! Let me know if theres any confusion to what I'm saying. Maybe I can explain a little better to what you don't understand?
-
Need to make footer move
I don't have a site up yet, I'm only running it on my local host. Is it hard to diagnose? Or is there some kind of html code I can set my div tag where it will move accordingly when the box is enlarged? Thanks for responding back
-
Need to make footer move
Hello, I was wondering how I can accomplish this kind of effect on my footer like this website: http://tutorialzine.com/contact/ When you enlarge the text box of the contact form all the way down, the footer moves accordingly. Right now, my footer is stuck when I try enlarging my contact form and the position of my footer is set to relative. Thanks
-
Scroll to code help
I got it to work, but it seems like I have to add a class to the id tag. It gives a white space between my questions and answers. This should be fine right? I wish it was just simple where I can just have <p id...> but instead its <p class="p" id... Oh and what other way is there to do this? Thanks guys!
-
Scroll to code help
will <a..> actually help me do what I'm trying to do? I don't need any scripts? It seems like I need some kind of script to make this happen. Maybe I'm explaining it wrong. I want the user to click on a question, and the browser will scroll down to that answer. I don't want a pop up or direct to another page. Its supposed to just scroll to that location. Thanks for responding Edit: oh got it! thanks!
-
Scroll to code help
Hello, I was wondering if anyone can direct me to a good source where I can add a scroll to code in my FAQ page. I'm going to have a list of questions on the top and then users and click on those questions and the page will scroll to the question. Can someone help me with this? Thanks!
-
Email Newsletter Help?
How do I work with mysql? I have WAMP and I think it has mysql on it too where I can locally test my site correct? How do i go about completing my form with this kind of setup? Do I need to show you anything? Thanks for all the inputs.
-
Email Newsletter Help?
Thanks for the reply, I checked out phpList, but it seems to complicated for me right now. I've already set up my site with the necessity of having a form. But I'm just not sure why when I tried testing my site by inputing an email in the form, it doesn't go into my .txt file? Or if anyone has dealt with this newsletter module: http://net.tutsplus.com/freebies/others/fantastic-ajax-newsletter-module/ How would I integrate it with my set up? Thanks
-
Email Newsletter Help?
Sorry, what does that code do? I'm not good in php Thank you for responding
-
Email Newsletter Help?
I've gone a new approach. I used this script: http://www.knowledgesutra.com/forums/topic/25586-php-simple-newsletter-script/ But does anyone know how to link the module to the script of what I have now form script <form action="mailing.php" method="post" enctype="text/plain" class="subscription_box" onsubmit="MM_validateForm('subscription_email','','NisEmail');return document.MM_returnValue"> <input name="subscription_email" type="text" id="subscription_email" value="insert email, then press enter." size="40" maxlength="64" onfocus="if(this.value=='insert email, then press enter.'){this.value='';}" onblur="if(this.value==''){this.value='insert email, then press enter.';}" onSubmit="return submitenter(this,event)"/> <label for="subscription_email"></label> </form> But I don't want to use the script for when they send out a message. I would like to use the module, but I'm not sure how to link the module to what I have set up already. Any suggestions? Thanks
-
validation with own pop ups help
Hello. I'm trying to create a newsletter form where the user can just simply input their email address. I don't have a button and I just want the user to click enter. I was wondering if someone can help me with my code on how to have my own picture pop up for when the user enters the email address, and when the user fails to enter a valid email address. I've downloaded some premade notification boxes from this site: http://scriptmafia.org/multimedia/18016-web-20-notification-boxes.html If anyone has experience with this, please help me. My code looks like this: Form <form action="" method="post" enctype="text/plain" class="subscription_box" onsubmit="MM_validateForm('subscription_email','','NisEmail');return document.MM_returnValue"> <input name="subscription_email" type="text" id="subscription_email" value="insert email, then press enter." size="40" maxlength="64" onfocus="if(this.value=='insert email, then press enter.'){this.value='';}" onblur="if(this.value==''){this.value='insert email, then press enter.';}" onSubmit="return submitenter(this,event)"/> <label for="subscription_email"></label> </form> Validation code (right now its being validated, but it pops up a boring windows error) I got this from dreamweaver <script type="text/javascript"> function MM_validateForm() { //v4.0 if (document.getElementById){ var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments; for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=document.getElementById(args[i]); if (val) { nm=val.name; if ((val=val.value)!="") { if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@'); if (p<1 || p==(val.length-1)) errors+='- must contain an e-mail address.\n'; } else if (test!='R') { num = parseFloat(val); if (isNaN(val)) errors+='- must contain a number.\n'; if (test.indexOf('inRange') != -1) { p=test.indexOf(':'); min=test.substring(8,p); max=test.substring(p+1); if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n'; } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; } } if (errors) alert('The following error(s) occurred:\n'+errors); document.MM_returnValue = (errors == ''); } } </script> This is the script when user presses enter, I got this from searching. I'm not sure if this works. I'm using wamp server on my computer so I'm only testing it locally. <script TYPE="text/javascript"> <!--This is submits the newsletter when pressed enter function submitenter(myfield,e) { var keycode; if (window.event) keycode = window.event.keyCode; else if (e) keycode = e.which; else return true; if (keycode == 13) { myfield.form.submit(); return false; } else return true; } //--> </SCRIPT> thank you for your time!
-
Email Newsletter Help?
I was thinking about those services, but right now I'm not trying to spend any money because I'm not sure how far my website go. But I'm trying to use this module from this website: http://net.tutsplus.com/freebies/others/fantastic-ajax-newsletter-module/ But I'm having a little trouble setting my form up where this module can receive the email addresses. Anyone have any ideas? my form code <form action="/subscription.php" method="post" enctype="text/plain" class="subscription_box" onsubmit="MM_validateForm('subscription_email','','NisEmail');return document.MM_returnValue"> <input name="subscription_email" type="text" id="subscription_email" value="insert email, then press enter." size="40" maxlength="64" onfocus="if(this.value=='insert email, then press enter.'){this.value='';}" onblur="if(this.value==''){this.value='insert email, then press enter.';}"/> <label for="subscription_email"></label> </form> The module came with a index.php file, but I changed it to subscription.php. But I don't think I'm supposed to put the file in the action because when I tried submitting the form, it goes straight to the module, which I don't want. When I submit the form, I wanted to have a response, saying thank you or something under the form and then the email could be sent to my module. Thanks for the help guys!
-
Email Newsletter Help?
Thanks! I was wondering if you have a good resource for me to learn how to build one? I'm building a website and I want people to submit their email address. Any good tutorials will probably be great! Thank you
-
Email Newsletter Help?
Hello! I'm trying to set up a newsletter form. Do I set up like how you would set up a contact form? I'm using dreamweaver cs5. I want my form to send it to some excel sheet so if I have a lot of subscriptions, it will be easier for me to email people. How do popular websites set up a newsletter form? I'm fairly new and I'm just touching the surface of web designing. Thank you!
-
How do you get the "disappearing text" effect you see in some text boxes?
oO!! I was searching for this! I registered just to say thank you! =)