8,966 Posted Topics
Re: AFAIK it should have 3 parameters. If you put the cursor after the first parenthesis, and press ctrl+shift+space, what does it say ? | |
Re: A jpg or png are static images. No way to scroll using them. Building a gif file that scrolls is theoretically possible, since it consists of a list of images. There is however no way for you to include direct links into an image. | |
Re: Start in [URL="http://php.net/manual/en/language.types.resource.php"]the resource manual[/URL]. | |
Re: Indirectly maybe. Google can find your pages more easily if you have a sitemap. | |
Re: You could do: [code] <script type="text/javascript" src="getListsInfo.php?filename=file.php"></script> [/code] The getListsInfo.php would read the filename parameter and output (with a template so to speak) the requested js file (using echo). | |
Re: [CODE] $reg = "%(([a-zA-Z]+://)+" . //find xxx:// "([a-zA-Z]+.)+" . //www. "(chickenHead.com)+" . //chickenHead.com "([^\s]+))%i"; //until space is reached [/CODE] As you can see I added %...%i The regex now has a start and end delimiter. The i after the delimiter is a [URL="http://www.regular-expressions.info/modifiers.html"]modifier[/URL]. i means case insensitive. ([URL="http://php.net/manual/en/reference.pcre.pattern.modifiers.php"]From PHP manual[/URL].) | |
Re: You may want to look at out-law.com in the cookies section. It is said there that it is allowed to get consent after the cookie is already in use. I think, until the gov clearly state their policy, no one will actually change anything and rely on browser settings. | |
Re: See example #4: [url]http://php.net/manual/en/function.mail.php[/url] | |
Re: Depending on your server you can create a PHP.INI file to configure the timezone to be used, or you can do it in code: [url]http://us.php.net/manual/en/function.date-default-timezone-set.php[/url] | |
Re: Definitely Cuba, although in recent years it is slowly losing it's charm. | |
Re: [CODE] $string = "<form name = \"$name\" method = \"post\">"; [/CODE] | |
Re: It is not possible by using PHP only. It is possible to call an external program from PHP to do it, but this is very dependent on your hosting machine. There are API's that do this for you, but none are free (if they are, then they are very restricted). | |
Re: See [URL="http://code.google.com/apis/maps/articles/phpsqlsearch.html"]this tutorial[/URL]. It contains the query you need to let mysql calculate the distance. | |
![]() | Re: Do you want a list of all tables ? If so, try the SHOW TABLES query. If not, clarify. |
Re: The last example on this page may help: [url]http://www.delphibasics.co.uk/RTL.asp?Name=FormatCurr[/url] | |
Re: Make the user and email columns in the database unique. If the query returns with an error, it is already in use. The database will take care of the concurrency problem. | |
Re: Are you trying to access localhost ? If so, did you create a database user in you cPanel ? Show your code (remove the username/password). | |
Re: You are trying your hotmail address and pass on your own server ? I think you need to check your user/pass. What smtp server is localhost running ? You set smtpauth to false, yet provide credentials... Which one is it ? Remember that php is case sensitive. I think [iCODE]->HOST[/iCODE] … | |
Re: Change [iCODE]=>[/iCODE] to [iCODE]=[/iCODE] (but only the first one) | |
Re: [QUOTE=itisnot_me;1554055]Interesting why is it that you use the / after the }?[/QUOTE] The / before and after is called the delimiter, which was missing in your regex. The delimiter can be any character you want, as long as the regex starts and ends with it. The reason for having one, … | |
Re: Perhaps this can help: [URL="http://www.firebirdfaq.org/faq174/"]How to get a list of tables, views and columns in Firebird database?[/URL] | |
Re: [url]http://dev.mysql.com/doc/refman/5.6/en/query-log.html[/url] | |
Re: See the sticky at the top of this forum on how to determine the error in your query. Next time please post a new thread, instead of reviving an old one. | |
Re: Remove the [iCODE]var[/iCODE] from the parameter definition. | |
Re: Does the [URL="http://jqueryui.com/demos/datepicker/"]jQuery DatePicker[/URL] meet your needs ? | |
Re: A mobile app. See the [URL="http://www.tapatalk.com/"]tapatalk website[/URL] for details. | |
Re: Most likely there is an error in your query. Please read the [URL="http://www.daniweb.com/web-development/php/threads/191031"]sticky thread[/URL] in this forum on how to determine the error. | |
Re: actor.actor_id is defined as INT, not as VARCHAR(10) | |
Re: [url]http://www.daniweb.com/forums/thread236229.html[/url] | |
Re: As long as you are not using the object version of mysqli, removing the 'i' would probably suffice. | |
Re: It is possible that the dll is not using stdcall functions. Have you tried cdecl for one ? I did not find a lot of info about this dll. Is there a way to get download the dll somewhere ? If you do not have a header file for the … | |
Re: [url]http://a-p-palaniraja.blogspot.com/2006/12/how-to-implement-hsbc-payment-gateway.html[/url] Search google for shopping carts that support it, download them, and look at the code. | |
Re: You need to escape the bracket, because it is a reserved char in a regex. [code] preg_match("/\[url|\[link|<a href/i", $v) [/code] | |
Re: [url]http://www.plus2net.com/php_tutorial/ajax_drop_down_list.php[/url] | |
Re: Did you try their own forum ? Am sure they can help you a lot faster. | |
Re: Am not sure what version of Delphi you have, and whether or not you have the source code. You could step through the TCustomListBox.SetSorted method, to see what actually happens. You may have to set some breakpoints, due to sending of messages. For normal sorting speed-up on a visible listbox, … | |
Re: I think you can best match the domain and the path separately, and then merge them back together. Perhaps something like this: [code] (href=")(http://google\.com)?(/)?(.*)(") [/code] Now you check every match, and put them back together if they are empty. [2] is the domain, [3] the slash, [4] the path. If … | |
| |
Re: For some reason $product[0] contains an array, instead of a single value. Since you also state that more products are not handled correctly, I think the adding to the $cart is causing this problem. I am not sure why you are using a pipe (|) as separator in it. You … | |
Re: You forgot the singles quotes around $menu_name In the second commented query, the second ON should be AND, and there too the single quotes are missing. [code] $query = mysql_query(" SELECT links.link_name, links.menu_name, nodes.url, nodes.file_path FROM links, nodes WHERE links.node_id = nodes.node_id AND links.menu_name = '$menu_name'"); /* $query = mysql_query(" … | |
Re: Just add another column to your table and run an UPDATE query. [code=sql] UPDATE userstable SET newcolumn = MD5(passwordcolumn) [/code] After the conversion is successful and your code has changed to use the new column, just remove the old column. | |
![]() | |
Re: I think if you want to attract developers to help build your CMS, you need at least a working demo to show your current status, a documentation of what you have, and a strict roadmap to avoid cluttering of features. If this is what you are after, perhaps sf.net or … | |
Re: In IE8 the Like button and the count next to it, are shown on top of the menu. |
The End.