Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
60% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
1
1 Commented Post
~13.7K People Reached
Interests
Spending time with my nephew, learning web development.
PC Specs
P4 3.2Ghz 1gig DDR RAM - winXP homeP4 3.0Ghz 1gig DDR RAM - PCLinux OSP3 1.0Ghz 512K RAM - Business…
Favorite Tags

24 Posted Topics

Member Avatar for ZenMartian

Google PHP form mail, you will find some free PHP scripts and form templates that you can customize to suit your needs. Using the form and PHP scripts, send the PHP mailer the address to send your message to by having the user input their 10 digit phone number and …

Member Avatar for Semy
0
493
Member Avatar for nyler01

@nickoooname: That's with a 1hr minimum right? Otherwise you only make €4 on this deal since the OP didn't specify that it had to integrate with an existing site ;)

Member Avatar for Sorcher
0
91
Member Avatar for Mrki77

In your first example lets assume that $_GET['id'] was properly validated and tested to be a legitimate image filename, and another test to verify that the file exists, you could use the GD library. Instead of the "file_get_contents()" line, use GD's methods: (search GD at php.net) [CODE]header("Content-type: image/jpeg"); // test …

Member Avatar for karteek.vemula
0
1K
Member Avatar for christina>you

I think the question would be better answered by a person who lives or has lived under a dictator's rule. Considering commentary I heard from people that have lived under a dictatorship, I am quite sure that not one of them would choose dictator over democracy. That being said, one …

Member Avatar for Future_Dictator
0
1K
Member Avatar for AndrewSmith

This might be the answer I was looking for. I am using false for async and Firefox wouldn't work until I installed Firebug plugin, then Firefox would work with async=false requests. Couldn't figure out why, glad you narrowed it down :)

Member Avatar for intsam
0
2K
Member Avatar for HazardTW

I don't understand very much about [URL="http://www.satzansatz.de/cssd/onhavinglayout.html"][U]hasLayout[/U][/URL], but I did just run into a problem where I was using a table for tabular data, but then decided I needed an image in one of the cells and some buttons. In order to get the image and buttons to line up …

Member Avatar for nrutman
0
254
Member Avatar for HazardTW

I do contract work for a small Wireless ISP in my rural area and am creating a desktop app to keep track of jobs and scheduling. The main part of my app visually is a calendar and in each visible day there will be lists as containers for jobs belonging …

Member Avatar for HazardTW
0
244
Member Avatar for HazardTW

I did make some attempts to search for this problem but was not sure exactly what to search for and being after 1AM my eyes wouldn't take reading through the 11+ pages of unrelated search results, so I will just ask the question... New to Java, want to use one …

Member Avatar for HazardTW
0
138
Member Avatar for hacker9801

[URL="http://bokehman.com/do_it_yourself_avatars/"]This[/URL] might give you some ideas.

Member Avatar for jmvazq
0
611
Member Avatar for marcmm

I think you need to look at client side solution to this problem at least in as much as using it for ajax calls to query the server/database, then rebuilding the drop-downs with the appropriate information. Having the page completely reload for every menu selection change would drive even the …

Member Avatar for marcmm
0
291
Member Avatar for XPlus

[code]ORDER BY `vehicles`.`$sort` ASC LIMIT [/code] You may want change that DOT between `vehicles` and `$sort` to a comma.

Member Avatar for HazardTW
0
100
Member Avatar for Diode

Go to php.net and lookup htmlentities and html_entity_decode methods. How you display user's input also depends on WHERE you display user's input. If the user-inputed data from the database is to be later displayed in the web page you want the user's line breaks to become <br>'s, if you are …

Member Avatar for Diode
0
2K
Member Avatar for yasmena

If those fields have the same NAME, ie. <input type="text" name="user_input"> <input type="text" name="user_input"> <input type="text" name="user_input"> <input type="text" name="user_input"> When the form that encloses these input's is submitted then the PHP variable on the server would be: $_GET['user_input'] or $_POST['user_input'] depending on your method get or post. It will …

Member Avatar for HazardTW
0
130
Member Avatar for tkmc

You beat me to it Xan :) I too noticed the use of $_POST and $_GET vars directly in the queries, something you absolutely do not want to do. If you have some kind of user-input validation on the client-side, it isn't good enough, client-side validation is for user convenience …

Member Avatar for HazardTW
0
2K
Member Avatar for Marlow

wget is awesome! I had been wanting to find a way to do database dumps daily of my client's websites and store them in .sql files on my server at home. I have a password protected script on each website that when accessed with the proper code, it's output is …

Member Avatar for HazardTW
0
111
Member Avatar for HazardTW

[url]http://weblog.infoworld.com/save-xp/[/url] Worth a shot if you love XP!

Member Avatar for HazardTW
0
647
Member Avatar for HazardTW

Hello, I am hoping to get some opinions on this. I work with a manufactured home dealer, they have four separate companies that work together: 1) mfg home retailer (does the deal for the mfg home) 2) development company (purchases lots and develops them to be ready to accept new …

Member Avatar for HazardTW
0
167
Member Avatar for raw.nic

[QUOTE]whether u like it or not, 80-85% of web visitors use IE . But from a developer point of view, most people prefer firefox becoz it supports various addons (which are of immense help)[/QUOTE] I think IE market share is only that high in the highest estimates. It also varies …

Member Avatar for TheAlex
0
177
Member Avatar for tanha

I personally would put the javascript confirm in the original page instead of having to load or reload a page, detect a set variable, then confirm the action. If a form submission is used, you can add the attribute onsubmit to your form element: <form action="" onsubmit="return confirm('are you sure?')"> …

Member Avatar for tanha
0
288
Member Avatar for trs21219

Whatever link a user uses to go to "mysite.com?act=games&task=play" why not just have that link point to "mysite.com/games/play.php?game=###" Seems like you might be unnecessarily complicating a simple task. I mean, why even call mysite.com when that is not the page you are looking for. Can you show us your code?

Member Avatar for johny_d
0
164
Member Avatar for macsuibhne

How about naming your banner images accordingly: searchbanner38.jpg, searchbanner43.jpg, etc. and in your search result choose the source of the banner image like this: [CODE]echo "<img src='path/to/images/searchbanner" . $_GET['makems'] . ".jpg'/>";[/CODE] definitely a few ways to skin this cat...

Member Avatar for HazardTW
0
95
Member Avatar for roy--

It looks like you are creating a select element with unclosed options elements. You have the opening and closing tags for select, but I only see the opening tags for the options, which may or may not be your problem. I use dynamically created options for my select's using ajax …

Member Avatar for HazardTW
0
247
Member Avatar for NuGG

A client side solution means the client has to load the page first, you absolutely need a server side solution. PHP session variables I think would be the way to go, when a page is requested, your PHP on the server would determine what was served up to the requestor. …

Member Avatar for HazardTW
0
281
Member Avatar for rpjanaka

Digital Ether, you saved me from pulling my hair out. I was trying to work on my website at a different location and Firefox would not properly handle my http requests, even though it works fine at home. Forgetting that I had Firebug installed at home I couldn't figure out …

Member Avatar for digital-ether
0
335

The End.