- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 10
- Posts with Upvotes
- 9
- Upvoting Members
- 8
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 2
Stan Kilgore is a man who was lucky enough not only to marry his best friend, but to have married a true geek girl.
- Interests
- Anime is my kryptonite, Diet Mountain Dew is my heroin, and cigarettes are the greatest thing that ever…
- PC Specs
- Atari 800XL w/ BLOAD Cassette Drive and Dual-Button Touchpad running AtariBasic. Them were the days...
128 Posted Topics
Re: If you are planning on creating the PDF files on your end, you can always check out [URL="http://code.google.com/p/dompdf/"]this code[/URL] to see if it is what you need for your site application. ![]() | |
Re: [QUOTE=wrivera;1137394]there is none, PHP is a server side language you will need to echo out the image tag as you would write it using html[/QUOTE] Now that's not entirely true, wrivera. There's always this tag: [CODE] <?php // Insert an image ?> <img src="imagename.jpg"> <?php // End image insertion ?> … | |
Re: Original poster hasn't posted in this thread since Sep 4th, 2009. Also, [URL="http://www.daniweb.com/forums/member541794.html"]Avasulthiris[/URL] stated [URL="http://www.daniweb.com/forums/post966525.html#post966525"]here[/URL] that the project HAD to be finished by Sep 4th, 2009. I don't think it is going to get marked "Resolved", and I'm pretty sure he isn't coming back to this thread anymore. :) Just … | |
If you ever go to [URL="http://www.hostip.info/"]http://www.hostip.info/[/URL], you will find a Community Geotarget IP Project. The great thing about it is that it is free to use. :) Now, this is just a snippet of code to begin working in the world of GeoIPs. There's a lot more info to be … | |
Re: Two suggestions: First, place a space between the closing quote and the word ORDER: [CODE=php] $commsql = "SELECT name FROM comments WHERE blog_id = " . $row['id'] . "ORDER BY dateposted;"; [/CODE] Also, if this does not fix the problem, then you might want to make sure that $commresult isn't … | |
Re: First, please use code tags like this: [CODE]$sql="SELECT GEN1MW,GEN1PF FROM generators where TIMESTOMPX LIKE '%$search%'";[/CODE] Also, answer in the code box. | |
Re: [URL="http://www.activestate.com/komodo-edit"]http://www.activestate.com/komodo-edit[/URL] | |
Re: [CODE]$mydate = date('Y-m-d');[/CODE] Hope this helps. | |
Re: #1 - Please use code tags for code. #2 - Please post relevant details, like how it is NOT working. I am not going through that wall of text without knowing what I am looking for in general. #3 - You are not only moving the site from one server … | |
Re: [CODE=php] <?php $membership_fee = 5; $activity_payment = 5; $total = $membership_fee+$activity_payment; echo "Total: ", $total; ?> [/CODE] Without better details, this covers what you asked. | |
Re: Yep, divyakrishnan has the right idea. To quote the great [URL="http://php.net/manual/en/function.fopen.php"]php.net[/URL] site: [QUOTE=php.net]If the open fails, an error of level E_WARNING is generated.[/QUOTE] You COULD just turn on the E_WARNING flag, but it is much better to use E_ALL. It helps you to remind you about declarations, deprecated code, etc. … | |
Re: You do realize that though you can open and read FROM .rar files, you can't actually create them? [URL="http://rarlab.com/"]WinRar's main site[/URL]. If you're looking to open user-uploaded rar and zip files (the thought which scares the living hell out of me) then you will probably want to just stick with … | |
Re: This question should be moved to the Software Development area under the appropriate section, depending on what the .ocx file is written for. If you are just looking for general information, you can start here: [URL="http://support.microsoft.com/kb/146219"]http://support.microsoft.com/kb/146219[/URL] | |
Re: What is the size of the image you are currently using as the background image? | |
Re: Not sure if this really helps, but just taking a jab at the logic... If line 66 turns out to be true, then line 79 below it can NEVER be true, neither can line 82. Not sure exactly HOW your API works, but you might try looking into your logic … | |
Re: Here's another way, without changing anything in the sql file: [CODE] <?php // Name of the file $filename = '*****.sql'; // MySQL host $mysql_host = '*****'; // MySQL username $mysql_username = '*****'; // MySQL password $mysql_password = '*****'; // Database name $mysql_database = '*****'; ////////////////////////////////////////////////////////////////////////////////////////////// // Connect to MySQL server … | |
Re: Nowhere in the code do you actually account for the armor. You get its rating for the character, but do not actually apply it at all anywhere in the code. Hope this helps. | |
Re: the var "pwd" is being used for both the password of the user during registration as well as password for the database. Hope this helps, my 2¢. ![]() | |
Re: Web hosts nowadays "police" copyrighted materials because they are sent "cease and desist" letters from lawyers or copyright holders. There's not but maybe a few foreign hosts that wouldn't pay attention to those letters. No host wants to lose their business over one customer. If what you have to stream … | |
Re: Are you talking about an actual IRC bot, or for another application, or a web page? The application determines the implementation. | |
Re: It's not a function, but a reserved variable in php. Basically, when you set the method of your form output as "get" instead of "post", you can use this variable to retrieve the form contents. If your html contained: [CODE=html] ... <form action="process.php" method="get"> <input type="text" name="email" /> <input type="submit" … ![]() | |
Re: Let's try going about this a little differently. If you have a good idea of where the php files are located that you will use, why not add their directories to the include path? You can follow [URL="http://php.net/manual/en/function.set-include-path.php"]this link[/URL] to see how you can add folders to the default path … | |
Re: Considering the example provided, I have to ask first, what type of database are you utilizing? | |
Re: No luck on my end. Is there a reason that you cannot use a newer version? Newer versions exist, and are highly recommended. Here's the updated link: [URL="http://rpm.pbone.net/index.php3?stat=26&dist=52&size=282254&name=php-soap-5.3.6-1.el5.remi.x86_64.rpm"]http://rpm.pbone.net/index.php3?stat=26&dist=52&size=282254&name=php-soap-5.3.6-1.el5.remi.x86_64.rpm[/URL] Hope this helps. | |
Re: Try removing the default sender (sendmail_from) in your php.ini. That has helped my friends in the past. | |
Re: Have you tried [URL="http://us3.php.net/manual/en/function.addslashes.php"]addslashes()[/URL]? | |
Re: Change line 9 of the above code to: [CODE=php] echo "ERROR: $errno - $errstr"; [/CODE] ...and tell me what this error message says. Hope this helps. | |
Re: This is just quick code, UNTESTED, but I think that this will get you in the direction that you are looking to go: thispage.php [CODE=php] <?php // Assuming you have set up the connection, let's play the get game if(isset($_GET['listtype'])) { $type = $_GET['selection']; } else { $type = "all"; … ![]() |
The End.