8,966 Posted Topics
Re: For completeness, there is also [url=http://www.apachefriends.org/en/xampp.html]XAMPP[/url] | |
Re: If the tags are for displaying only, wouldn't a GROUP_CONCAT be useful ? | |
Re: [url=http://cc2e.com/]Code Complete[/url] [url=http://hillside.net/component/content/article/51-design-patterns/131-elements-of-reusable-object-oriented-software-book]Design Patterns[/url] My two cents. | |
Re: First write down in words and in small simple steps, what you think the program should do. Then you can replace those steps with actual code. | |
| |
Re: See [url=http://php.net/str_replace]str_replace()[/url]. ![]() | |
Re: Try [url=http://api.jquery.com/keydown/].keydown()[/url] | |
Re: This is because the points are used in the calculation, so you cannot change them. You best guess is to use an additional array mapping the integers to the street names: [code] $mapping = array (0 => 'George St', 1 => 'Alice St'); echo "\n\n The shortest route from " … | |
Re: The docs are here: [url]http://code.google.com/apis/picasaweb/overview.html[/url] There is a getting started link on the left. | |
Re: Be careful. Allowing to upload any picture to your server, may violate copyright. That you can find the image with Google, does not mean it is free to use. | |
Re: [code] SELECT * FROM `details` WHERE (brand = 'audi' OR brand = 'toyota') AND Oil = 'Diesel' [/code] | |
Re: [url]http://www.tmssoftware.com/site/advgrid.asp[/url] | |
Re: This I think: [icode] RewriteRule i/image_(\d+)\.jpg pic/$1 [L] [/icode] | |
Re: This happens probably because your forgot the quotes. I think it should be: [code] echo "<td><input type='checkbox' name='checkbox[]' value='$Title' style='width:14px; text-align:right;'/></td></tr>"; [/code] | |
Re: A slideshow without the buttons can be downloaded from my [url=http://www.pritaeas.net]website[/url]. If you really need the buttons, have a look at [url=http://jquery.malsup.com/cycle/]innerfade[/url] (jquery plugin). | |
Re: You mean this: [url]http://wiki.lazarus.freepascal.org/Installing_Lazarus_on_MacOS_X[/url] | |
Re: Probably not for every possible regex. See [url=http://stackoverflow.com/questions/172303/is-there-a-regular-expression-to-detect-a-valid-regular-expression]this thread on StackOverflow[/url]. | |
Re: [code] var date = $('#datepicker').datepicker({ dateFormat: 'yyyy-mm-dd' }); [/code] | |
Re: Opera is not showing anything. | |
![]() | Re: Do you have an url where we can see ? ![]() |
Re: If you are using the mail() function, then authentication is not possible. You may need to use a tool like XMailer, PHPMailer or PEAR:Mail | |
| |
Re: should come from your url, somelike example.com?id_=1 | |
Re: I know [url=http://www.embarcadero.com/products/radphp]Delphi for PHP[/url] provides this functionality. | |
Re: Show your code. Hard to guess your problem without it. | |
Re: More specifically: Class variables (properties) need to be declared with public, private or protected. Declaration with var (public) is supported for compatibility reasons. You can read more [url=http://www.php.net/manual/en/language.oop5.visibility.php]here[/url]. | |
Re: Can you explain a bit more what you want ? Do you want to search your folders for mp3 files and show a list (with links) ? | |
Re: Your code is incomplete. See: [url]http://www.daniweb.com/forums/thread31803.html[/url] or search this forum for more examples. | |
Re: What are you trying to achieve ? This is from the manual: "The value of the constant; only scalar and null values are allowed. Scalar values are integer, float, string or boolean values. It is possible to define resource constants, however it is not recommended and may cause unpredictable behavior." … | |
Re: Try this, and paste the error here: [icode] $wordpress_user_db_query = mysql_query("INSERT INTO cedsite_wrdp1.wp_users (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES ('$username', '" . md5($pass) . "', '$username', '$email', '', '$date', '', 0, '$username')") or die(mysql_error()); [/icode] | |
Re: [code] $files = sort(glob('photos/*.jpg')); foreach ($files as $file) { $photos .= '<img src="thumbs.php?src='.$file.'&f=2&t=3" alt="'.$file.'" title="'.$file.'"/>'; } [/code] | |
Re: Please be more specific. What do you mean by 'another jquery' ? What problem do you have ? | |
Re: Should you not get it to work, there is also this: [url]http://phpthumb.sourceforge.net/[/url] | |
Re: I'm assuming you only want to run the php file, and not view the output. So, instead of running it with iexplore, run it with php.exe | |
Re: You have outputted (echo'd) something before calling the header, remove it. | |
Re: header should be lowercase. PHP is case sensitive. | |
Re: Are the quotes you use just copied wrong ? Because they are not single nor double quotes. | |
Re: If you dump your table structure and part of your data, then we van try. | |
Re: See other thread. | |
| |
Re: You need javascript to check the return value of the window (true if updated), and update the content accordingly. This would mean you have to use ajax to get the new data from the server. Btw, there is something wrong with your html. A normal layout is: [code] <html> <head> … | |
Re: False indicates no records were returned. | |
| |
Re: I think this is controlled by a setting, to open a new tab instead of a new window. Can you show an url ? | |
Re: [icode]CoInitialize(nil);[/icode] need only be called once. I suggest you move it to the initialization section. You create a new locator everytime, but it is not free'd. Perhaps creating it once will suffice. |
The End.