- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
I really think this internet stuff is going to take off!
- Interests
- website design, graphics, programming
Have you ever tried programming one of these: Showing Page 1 of 17 Go To: 1 | 2| 3….. Well I have written a nifty class that will take care of it for you. You can even change the formatting outside of the class. Call this class right after your … | |
Re: Anyone who thinks web design isnt art can checkout my new project [url]www.sitesthatrock.com[/url]. We are showcasing the best websites on the internet here. | |
Re: New designers often find it hard to get work because people want to see somestuff you've done and if you havent done any - they probably wont hire. I would suggest two things. 1. Get a website of your own if you dont already have one. 2. Do somebody's site … | |
Re: It sounds like you want to make another MySpace.com type site. This is a LOT of work. I program in strait HTML and PHP with no code generators and I have recently made what you and Myspace require. I had a huge resource of code that I have already developed … | |
Re: While Java is an excellent language, (My formal schooling was 100% java) I will only program web-apps in php. Its faster to learn, easier to find resources for, and can be just as "clean" as java if you know what your doing. In most cases you are probably going to … | |
Re: Try This [url]http://za.php.net/manual/de/function.simplexml-load-file.php[/url] | |
If your familiar with database search results, then you probably know how useful the GET method is. My results page is a list of site members from the database. We want to have a feature that allows users to add these members to a html select box to "save a … | |
Re: Here's how header() works You can put header("Location: whateverpage.php"); anywhere you want. Top/bottom of script doesnt matter. What is important is to put exit(); right after. The reason being that all your doing with the header call is changing the headers, the script wants to finnish before it uses those … | |
Re: While I would agree with Troy, if you still need to do it with iframes, this might work. I havent tried it out with your specific problem though. In the past I have had special situations where I needed to change html so I used <div> tags. This might be … | |
Re: Hi Lawfour Ok the first thing is I think your ready to move on to hand-writing your php instead of using a tool to do it for you. The people in this form are great and we can answer almost any question you have. -And while writing by hand might … | |
Re: Well I dont think you need php for that. It might be overkill. Use JavaScript. When you use php or any other server-side language, whenever your user wants to make a calculation, the page will have to contact the server, which means the page will refresh, which mean you will … | |
Re: Your right, the problem is -> recalc_onclick('p1B1') The reason is because you are using single 'quotes' as opposed to "double" to encasulate strings (which is ok). But when you say that statement with single quotes inside, it thinks your ending the string. Do this to say that you literally want … | |
Ok, I am putting my users text onto the screen. I need it to represent what they typed so I use the <pre></pre> tags to preserve the hard returns and other white space. The problem comes when they type a long paragraph (such as the one Im typing now) and … | |
Re: I think you should use cookies. I also think you should look at this script. The top of this page has a great php login with session handling and cookies for automatic re-login. I have the link here though to my comment on the script that will have some extra … | |
Re: What exactly do you mean by your own mail program? Something like a free yahoo or hotmail? -Brad | |
Re: While I would agree with the regular expressions. It is the best and proper way. Regular expressions can be hard to make. An alternative would be to have an array like this $my_nums = array("0","1","2") and then loop through the length of the string and do a check like this … | |
Re: Try this class [PHP] class Email { /* Global Variables */ //---------------------------------- var $message; var $address_to; var $address_from; var $from_name; var $subject; //---------------------------------- function setMessage($message) { $this->message = $message; } function setAddressTo($address_to) { $this->address_to = $address_to; } function setAddressFrom($address_from) { $this->address_from = $address_from; } function setFromName($from_name) { $this->from_name = $from_name; … | |
Re: I dont know why, but maybe I can help. I at least know why there are three slashes! Im sure you know that a back slash makes the next character literal. The best example is a string that looks like this var = "here is a \"quote\"" you know that … | |
Re: Your going to have to give more detail but I dont think sessions are dependant on the php version or operating system. | |
Re: Hi Class I will be able to help you but I need to know some things first. 1. Are you already familiar with making standard HTML web pages 2. What do you need the php programming language for (database, form process, dynamic results) | |
Re: Do you have phpMyAdmin? If so I would make an insert with that and make sure you use your single or double quotes, which ever you want. - And see how it does the job. It will make the insert and show the query that was used | |
Well I tried finding this information all over and all I could find were people trying to edit Word docs with php. I, rather, am trying to just load them into a variable to search through them. The server is Linux and not windows so we will not have the … | |
Re: As far as I know there is no way to see if an email is a valid one. (otherwise spammers would be in heaven). But there is a technique used to make sure somebody is using a real email. I dont know what your application is but lets say somebody … | |
I am pretty good with mysql but I haven’t done much full text searching. I have this problem though with getting results. I learned how to do the fulltext searching at the mysql.com site. I plugged their exact example into my database with phpmyadmin and everything good. Then when I … | |
Re: With Photoshop you can do a "slicing" tool as mentioned above but its not the best way to arrange a website. Plus Photoshop is very expensive and harder to work with because it focuses on editing photographs rather than making graphics. You may want to look into other graphics programs … | |
Re: I host all my stuff with [url]www.page-zone.com[/url]. I've had sites with them for several years and I think they do a good service. Plus its only about 4.95/month. Are you newbie, if so we need to get you a domain and show you how to get started with all this. … | |
Re: what programming languages do you know? Are you good with database stuff? | |
Re: [QUOTE=astm]i want any one tell me how can i used session and cookies ??? :o :o :o[/QUOTE] I've been using sessions for a short time. But here's what I know. -Sessions and cookies go hand-and-hand. Use session_start(); at the begining of the code and if the users browser accepts cookies … |