Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
9
Posts with Upvotes
9
Upvoting Members
7
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
8 Commented Posts
~19.1K People Reached
About Me

I am a professional WordPress Developer residing on the Mississippi Gulf Coast. I have been working in the web industry for approximately 11 years. I have been working almost exclusively with WordPress for 5 years. I am deeply passionate about the work…

Interests
Web Development
PC Specs
Case: Antec 900Monitor: ASUS 24" LCDMotherboard: ASUS P5E3 Deluxe/WiFi-APCPU: Intel Core 2…

64 Posted Topics

Member Avatar for kozkay

Conversion from PHP to Javascript is impossible. That's kind of like converting a spaceship into spaghetti. They're different things entirely. PHP is a server-side programming language meaning that the code is parsed by the server. The end-user will never see PHP. Javascript on the other hand (in most cases) is …

Member Avatar for Arthur_4
0
5K
Member Avatar for chibex
Member Avatar for saskico
0
2K
Member Avatar for aodpreacher

As far as I know, there is no Master's in Web. Even a Bachelor's is hard to come by. If you want to, you could go for your [URL="http://www.ciwcertified.com/certifications/program.asp"]CIW certification[/URL] and master in one of their branches.

Member Avatar for bjelline
0
296
Member Avatar for EddieC

I hope everyone is ready for CSS tables for layout. I for one can't wait. It will make coding the CSS for layouts SO much easier.

Member Avatar for AleMonteiro
0
346
Member Avatar for quecoder

[QUOTE=samarudge;691419]Have a look at [url]http://www.hscripts.com/scripts/php/usersOnline.php[/url] and play about with that code. Regards, Sam Rudge[/QUOTE] This was actually the script I was going to suggest. You could implement it with your current system and possibly identify the IP addresses by the IP addresses your users logged in with. Just a thought.

Member Avatar for diafol
0
132
Member Avatar for redous

What you're trying to do is not possible. There is no way to store PHP code in variables. I would suggest putting the separate[CODE][/CODE] code snippets that you are trying to store in variables and store them into separate PHP files. Store the names of those files in the array, …

Member Avatar for redous
0
308
Member Avatar for SoulMazer

It's not exactly a library, but I would have to suggest Unity, just because of how scalable it is. You can use the engine to make any kind of game you want, and it allows you to code in many different programming languages, depending on what you're most comfortable with. …

Member Avatar for Tomsky
0
174
Member Avatar for Chosen13

Is there any reason as to why you can't use one of the forum systems that already exist out there? [url]http://www.invisionpower.com/[/url] [url]http://www.phpbb.com/[/url] [url]http://www.vbulletin.com/[/url] And if you need something lightweight: [url]http://bbpress.org/[/url]

Member Avatar for eddimondson
0
281
Member Avatar for keyroche

After checking out your code, I can confidently say there's nothing wrong with it. The categories aren't in the database twice, are they? If not, the only thing I'd try is this: [code=php]<?php $letter = $data['letter']; $getCats = mysql_query("SELECT DISTINCT catName FROM categories WHERE catName LIKE '$letter%' ORDER BY catName"); …

Member Avatar for rajarajan2017
0
98
Member Avatar for Venom Rush

Personally, I've always used [URL="http://digitarald.de/project/fancyupload/"]FancyUpload[/URL], and I've never had any issues with it.

Member Avatar for MVied
0
148
Member Avatar for ajwei810192

I do a lot crazier stuff with PHP and JavaScript than that, so I know it works. I tried your code, and it worked. The only problem was a line break after the name variable. [code=php]if ($name == 'Mary') { echo "<script type=\"text/javascript\">window.alert(\"Hi, Your Name is " . $name . …

Member Avatar for ajwei810192
0
108
Member Avatar for mongo23
Member Avatar for jobykjoseph

CURL is probably the easiest solution. Here is an example using cURL. You can read more about it [URL="http://php.net/manual/en/book.curl.php"]here[/URL]. [code=php]$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'http://www.example.com'); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1); curl_setopt($ch, CURLOPT_PROXY, 'fakeproxy.com:1080'); curl_setopt($ch, CURLOPT_PROXYUSERPWD, 'user:password'); $data = curl_exec(); curl_close($ch);[/code]

Member Avatar for Manuz
0
900
Member Avatar for rics

Also, there are at least 50 ways to do any one thing, so without something to start with, it's nearly impossible to give you something that would work for you. Also, why comboboxes?

Member Avatar for urtrivedi
0
135
Member Avatar for vho123

From what I can tell, the code is looping through every time it needs to, you're just overwriting your variables because you re-assign them every time it goes through the loop. You'll notice that the only result returned is the last channel and the last program on that channel. For …

Member Avatar for MVied
0
131
Member Avatar for json101

I'm not sure in what context you're using either of these statements. It looks to me like each option you gave is doing something different. The first one could be written like this if you wanted to make it a little smaller. [code=php]if ($_REQUEST['item'] != ''){ $path = 'uploads/file/'.$filename; }else{ …

Member Avatar for json101
0
120
Member Avatar for ajwei810192

It looks like you're missing the slash at the beginning of your regular expression. [code=php]preg_match("/(Mon|Tue|Wed|Thu|Fri)/i", $keywords[$i])[/code]

Member Avatar for MVied
0
86
Member Avatar for lideth
Member Avatar for diafol
0
134
Member Avatar for paratge

Hi there, this error usually means you're missing a closing curly brace in your code somewhere. Php-coder, your unclosed curly brace is on line 108. Just glancing at your code, it looks like you'd want to put the closing brace around line 130, under this line. [CODE]header(sprintf("Location: %s", $insertGoTo));[/CODE] May …

Member Avatar for php-coder
0
527
Member Avatar for 3DProf4online
Member Avatar for lunet

[QUOTE=ramseswar;690411]To need to know HTML, I think you do not have to learn the coding. You just have to download Adobe Dreamweaver and make a headstart. Just use the GUI and the code will be generated itself (you may check the code and learn HTML easily). Also, you will need …

Member Avatar for Bob Walsh
0
268
Member Avatar for aran87

Personally I use [URL="http://www.aditus.nu/jpgraph/"]JpGraph[/URL] in a CRM I wrote. It gives you the ability to easily create pie charts, bar graphs, or any other type of chart or graph you could imagine.

Member Avatar for make.rohit
0
731
Member Avatar for rajeesh_rsn

You should be fine as long as you only allow certain file types to be uploaded. For instance, you don't want people to be able to upload files that may contain malicious code to your website. You will want to check the file type of what is being uploaded to …

Member Avatar for MVied
0
119
Member Avatar for isomillennium
Member Avatar for dami06

Additionally, your code is very unsafe. Anyone could hack this form with MySQL injections, such as typing [B]' OR a=a--[/B] in the password field. This would allow them to login to the site with the username of whoever is first in the database. Replace this: [code=php]$myusername=$_POST['myusername']; $mypassword=$_POST['mypassword']; $sql="SELECT * FROM …

Member Avatar for MVied
0
361
Member Avatar for anuj_sharma

The only reason you should consider Dreamweaver is because it's an industry standard. If you don't plan on making your life career in web, don't bother. Dreamweaver has many features in it that will write code for you, and I've never seen a site written in Dreamweaver that was semantically …

Member Avatar for DeViAnT\gAmEr
0
143
Member Avatar for MVied

Okay, so I'm writing an application. In this application there is a drop down with the selections 10, 20, 30, and so on to 100. This drop down controls the amount of times a loop will occur. Basically, every time the application gets to a loop that is 10% of …

Member Avatar for MVied
0
181
Member Avatar for AmySmith

The importance of certifications will vary from employer to employer. But it never hurts to have as many as possible. For Web Development, I would suggest going for your [URL="http://www.ciwcertified.com/"]CIW (Certified Internet Webmaster)[/URL].

Member Avatar for espmartin
0
193
Member Avatar for titico

First off, if you're using something like Windows XP, you need to make sure that you allow incoming traffic to your PC through port 80. The same needs to be done if you have a router or firewall between yourself and the Internet. It may also be a misconfiguration with …

Member Avatar for dickersonka
0
159
Member Avatar for bear24

This:[code=php]<?php while($row = mysql_fetch_array($sqlresult)){ ?>[/code]Should be this:[code=php]<?php while($rows = mysql_fetch_assoc($sqlresult)){ ?>[/code]Your variable was named $row and you called it later in the loop as $rows. I've always used mysql_fetch_assoc for loops like this, but I'm not sure if that makes a difference or not.

Member Avatar for bear24
0
130
Member Avatar for AlanW

And if you're interested in making that code a little smaller: [code=php]<?php if(!empty($a1[image])) { $im_array = explode("|", $a1[image]); $images = ""; if ($im_array !== false) { foreach ($im_array as $img) { $images .= "<a href=\"re_images/".$img."\" target=\"_blank\"><img src=\"re_images/".$img."\" width=\"100\" height=\"100\" border=\"1\" /></a><br />\n"; } } } $ShowInfo .= "</td>\n\t<td align=center valign=top>".$images."For …

Member Avatar for AlanW
0
159
Member Avatar for mohammed2raja

If you're using JavaScript to call a PHP file, then it sounds like AJAX. In which case you would have to use the DOM to display the result of the PHP script. Please show us the script you're using.

Member Avatar for mohammed2raja
0
143
Member Avatar for lamarketingfirm

The phone number is a good idea as a spam bot probably won't fill that in correct, especially if we validate it. :) This method will accept a 10 digit phone number with spaces, dashes, or neither. [code] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" …

Member Avatar for ithelp
0
242
Member Avatar for anuj_sharma

Well, if you're using a web host you can simply FTP to the server and drag and drop the image to where you need it. What kind of host are you using?

Member Avatar for Shanti C
0
87
Member Avatar for MVied

Well I wanted to get some other professional input on a very small, but useful script I'm writing. It began as a script for a friend of mine that is a teacher that wanted something similar to the W3C [URL="http://www.w3schools.com/HTML/tryit.asp?filename=tryhtml_basic"]TryIt Editor[/URL] for her classes. I've done all that I can …

0
36
Member Avatar for edoal

Better yet go get phpMyAdmin and use the GUI to do it. That's about as simple as it gets.

Member Avatar for MVied
0
104
Member Avatar for siriyal

In reference to the poll, using table elements for layouts is bad, but using CSS tables is so very good (as soon as IE8 is standard and all majors browsers support it). It will revolutionize the way we design websites. Read here: [URL="http://www.sitepoint.com/blogs/2008/02/28/table-based-layout-is-the-next-big-thing/"]http://www.sitepoint.com/blogs/2008/02/28/table-based-layout-is-the-next-big-thing/[/URL]

Member Avatar for MVied
0
94
Member Avatar for fchristopher

If you want to use one, I would use [URL="http://www.webdesigners-directory.com/"]Web Designers Directory[/URL], and I do. If you Google "Web Design" it's on the first page.

Member Avatar for MVied
0
78
Member Avatar for mark1993

I may be wrong, but I believe there's PhpBB3 addons that will place ads on your site. I'm not sure, I hate putting ads on my forums.

Member Avatar for MVied
0
99
Member Avatar for designingamy

And you probably want to declare the E-mail variables correctly. Also, paragraph tags within a form used in that way aren't exactly semantically correct. It's acceptable to use <br /> tags right after the labels or CSS floats if you want to help style your form rather than paragraph tags, …

Member Avatar for MVied
0
97
Member Avatar for luisrc

When this happens, it usually occurs when you have a "catch all" E-mail address that recieves all E-mails that are sent to your domain but go to an invalid address. If you disable that feature, you won't have the problem anymore. I had the same problem and this is how …

Member Avatar for MVied
0
181
Member Avatar for yuvrajsinghshak

Well, it sounds like he doesn't need to do it personally, but needs to have a script that can do it for users of the script he's writing. I've thought about doing something like this, but I never got around to it. I would suggest doing it with a dynamic …

Member Avatar for MVied
0
285
Member Avatar for queenc

I agree with Buddylee17, Google Analytics is the only way to go if you want detailed information on who visits your site.

Member Avatar for MVied
0
158
Member Avatar for BooBooCat
Member Avatar for php2sheik

Well, what I tell you is entirely dependent on how you go about submitting the form (POST or GET) and the way you made your drop down list. Please copy and paste your source code so that I can look at it. After that I will be able to give …

Member Avatar for MVied
0
178
Member Avatar for praveen_dusari

Better yet, why not use cookies? I built my own store once and I used cookies to store user's orders. When they went to finalize their order, it was the inserted into the database. Also, I checked to see if they had cookies enabled, if not then I went ahead …

Member Avatar for MVied
0
78
Member Avatar for loligator

I know there's probably a better way, but this is the first thing that comes to mind. [code=php] for ($i=1; $i<=$x; $i++) { $sql = mysql_query("SELECT t_tag FROM tags WHERE t_tag = '".$tag[$i]."';"); $result = mysql_result($sql) or die (mysql_error()); $total_tag_usage = mysql_num_rows($sql); echo "<tr><td>" .$t_tag[$i]. "</td><td>" .$total_tag_usage. "</td></tr>"; }[/code]

Member Avatar for MVied
0
207
Member Avatar for khsater

Yes, your quotations are all kinds of messed up. I'll walk you through what's wrong so you don't make the same mistake again. [code=php] $sql = 'UPDATE user SET active = 1 WHERE (password = "$_GET['hash']") AND (timestamp = ".base64_decode($_GET['stamp'].")'; $result = mysql_query ($sql) or die (mysql_error()); if( mysql_num_rows($result)==1 ) …

Member Avatar for MVied
0
68
Member Avatar for websurfer

I'm having a hard time understanding what you're trying to accomplish; however, it is possible to have .htaccess files within folders that control what happens in that folder and it's subdirectories.

Member Avatar for websurfer
0
111
Member Avatar for rjrasmussen

I am in no way familiar with DT, but I think I know what you're asking. On the mbrdetail.php page, you could make links to mbrevents.php, mbrsocieites.php, etc like so: [code]<a href="mbrevents.php?id=<?php echo $_GET['id']; ?>">Member Events</a>[/code] This is, of course, assuming that the member's id is passed in the URL …

Member Avatar for rjrasmussen
0
105

The End.