8,966 Posted Topics

Member Avatar for rtr18

AFAIK it should have 3 parameters. If you put the cursor after the first parenthesis, and press ctrl+shift+space, what does it say ?

Member Avatar for TrustyTony
0
196
Member Avatar for Inny

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.

Member Avatar for pritaeas
0
196
Member Avatar for panhwer

Start in [URL="http://php.net/manual/en/language.types.resource.php"]the resource manual[/URL].

Member Avatar for pritaeas
0
59
Member Avatar for abhi10kumar
Member Avatar for jennia1686
Member Avatar for Steven.Matrix
0
141
Member Avatar for alexia_net

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).

Member Avatar for alexia_net
0
214
Member Avatar for dubery

[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].)

Member Avatar for dubery
0
326
Member Avatar for petmol
Member Avatar for kained

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.

Member Avatar for edwinhermann
0
211
Member Avatar for ivan3510
Member Avatar for ivan3510
0
111
Member Avatar for ptara1

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]

Member Avatar for ptara1
0
395
Member Avatar for vegaseat
Member Avatar for jwenting
1
160
Member Avatar for vivekchandra
Member Avatar for arshi9464
Member Avatar for raghujosh
Member Avatar for raghujosh
0
151
Member Avatar for ujjval dave

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).

Member Avatar for ujjval dave
0
135
Member Avatar for hermanSA

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.

Member Avatar for hermanSA
0
189
Member Avatar for begueradj

Do you want a list of all tables ? If so, try the SHOW TABLES query. If not, clarify.

Member Avatar for pritaeas
0
35
Member Avatar for vmirce

The last example on this page may help: [url]http://www.delphibasics.co.uk/RTL.asp?Name=FormatCurr[/url]

Member Avatar for pritaeas
0
96
Member Avatar for cmccully

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.

Member Avatar for cmccully
0
167
Member Avatar for lovell_82

Are you trying to access localhost ? If so, did you create a database user in you cPanel ? Show your code (remove the username/password).

Member Avatar for lovell_82
0
143
Member Avatar for klemme

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] …

Member Avatar for pritaeas
0
97
Member Avatar for rotten69
Member Avatar for vibhaJ
0
90
Member Avatar for itisnot_me

[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, …

Member Avatar for itisnot_me
0
148
Member Avatar for Morten Brendefu

Perhaps this can help: [URL="http://www.firebirdfaq.org/faq174/"]How to get a list of tables, views and columns in Firebird database?[/URL]

Member Avatar for Morten Brendefu
0
170
Member Avatar for 68thorby68
Member Avatar for 68thorby68
0
153
Member Avatar for theighost

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.

Member Avatar for pritaeas
0
4K
Member Avatar for amoarg69
Member Avatar for HelenLF

Does the [URL="http://jqueryui.com/demos/datepicker/"]jQuery DatePicker[/URL] meet your needs ?

Member Avatar for pritaeas
0
81
Member Avatar for sloan31

A mobile app. See the [URL="http://www.tapatalk.com/"]tapatalk website[/URL] for details.

Member Avatar for debasisdas
1
80
Member Avatar for rpv_sen

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.

Member Avatar for rpv_sen
0
369
Member Avatar for rrlogu
Member Avatar for jfunchio
Member Avatar for rutaba
Member Avatar for HelenLF
Member Avatar for gogreen1
0
124
Member Avatar for ebanbury

As long as you are not using the object version of mysqli, removing the 'i' would probably suffice.

Member Avatar for ebanbury
0
141
Member Avatar for Morten Brendefu

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 …

Member Avatar for pritaeas
0
823
Member Avatar for vigneshmohan

[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.

Member Avatar for pritaeas
0
40
Member Avatar for liamfriel

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]

Member Avatar for liamfriel
0
163
Member Avatar for branding4you
Member Avatar for jayapalchandran
0
3K
Member Avatar for kaizerkiller
Member Avatar for kaizerkiller
0
137
Member Avatar for Morten Brendefu

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, …

Member Avatar for TrustyTony
0
2K
Member Avatar for joomphp

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 …

Member Avatar for pritaeas
0
189
Member Avatar for keldonkor
Member Avatar for Daave
0
102
Member Avatar for thijscream

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 …

Member Avatar for thijscream
0
185
Member Avatar for BrianDickson

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(" …

Member Avatar for smantscheff
0
170
Member Avatar for Shuel

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.

Member Avatar for pritaeas
0
99
Member Avatar for jpknoob
Member Avatar for jpknoob
0
85
Member Avatar for gunnarflax

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 …

Member Avatar for gunnarflax
0
197
Member Avatar for Dani
Member Avatar for e-papa
0
294

The End.