8,968 Posted Topics

Member Avatar for lttleastig
Member Avatar for lttleastig
0
75
Member Avatar for whitestream6

Not sure about the better part, but the AddHandler was made for this (telling Apache what to do with a certain file).

Member Avatar for pritaeas
0
110
Member Avatar for sujitrulz

Store the limit and a last changed date in a table. Before updating a value, see when it was changed last, to determine if it should be reset.

Member Avatar for pritaeas
0
82
Member Avatar for HelenLF

I have one [URL="http://www.pritaeas.net/view/articles/portfolio-with-jquery"]here[/URL] that is relatively small. Do you have your page online, so we can see what's wrong ?

Member Avatar for pritaeas
0
83
Member Avatar for Progr4mmer
Member Avatar for pritaeas
0
112
Member Avatar for ilvista
Member Avatar for reco21

Can't you subclass your class, or add a member variable to it to handle such custom change ?

Member Avatar for pritaeas
0
191
Member Avatar for bbinais

Try yourself first. There are a lot of threads in this forum on the topic.

Member Avatar for pritaeas
0
168
Member Avatar for newbie14

jQuery UI defines visual widgets for you to use, like a calendar. Theming is built into this, so can be easily modified to suit your needs.

Member Avatar for newbie14
0
85
Member Avatar for AdriftUniform

[QUOTE=AdriftUniform;1453145]The annoying thing is that names with underscores will work everywhere else in the website weather it is echoing the username, using it in the url or saving it in a database along side an uploaded image, just not with my friends system.[/QUOTE] This should tell you already that the …

Member Avatar for AdriftUniform
0
180
Member Avatar for soomro_moon
Member Avatar for radujit

If your table is set to case-sensitive, then you must use 'Buy' and 'Sell'

Member Avatar for smantscheff
0
116
Member Avatar for Eneswar

"log_mysql_query" typo perhaps ? Or is this a function you created ?

Member Avatar for Eneswar
0
162
Member Avatar for EMT

onsubmit is called first. If this returns false, the form will not be submitted to the page specified in action.

Member Avatar for pritaeas
0
385
Member Avatar for thilinam

To be able to debug remotely you DO need to install a debugger and change some settings. If you can download everything (including the database) locally, then you can do it from your computer (assuming you have Apache, PHP and such installed). However, there is always a chance that there …

Member Avatar for pritaeas
0
127
Member Avatar for opticblaze
Member Avatar for opticblaze
0
114
Member Avatar for swapnathomas

I think you're better off asking them. They provide excellent support so you should have an answer quite soon.

Member Avatar for pritaeas
0
34
Member Avatar for lisaroy1
Member Avatar for nyler01

If you want to do this then you should have a look at javascript. You will need to poll the server at an interval to get the changes.

Member Avatar for rje7
0
120
Member Avatar for lisaroy1
Member Avatar for Shanti C
0
110
Member Avatar for debayanmitra

If you want to change the cities when the country changes without reloading the page, then you need some javascript too.

Member Avatar for Shanti C
0
119
Member Avatar for ON_Jtharpe

For example: [code=sql] SELECT * FROM movies WHERE title LIKE 'Ca%' [/code]

Member Avatar for lyrico
0
246
Member Avatar for Joe34

Are you sure that file_get_contents is allowed to get a remote page ? Not every host allows this.

Member Avatar for lordspace
0
248
Member Avatar for Sorcher
Member Avatar for lordspace
0
2K
Member Avatar for waveydaveywaves

Missing comma. Please, next time use code tags. Also, put a comment on the correct line so we now where to search.

Member Avatar for pritaeas
0
348
Member Avatar for anita_86

In the WHERE clause you have to specify which userlevel to use, the one from mssgs or users.

Member Avatar for pritaeas
0
111
Member Avatar for rumahsolusi

If the file can be navigated to, then it will most likely get indexed. To point a robot to the file, you can always use a sitemap.

Member Avatar for vikrantholidays
0
340
Member Avatar for speer25

[code] xmlhttp.open("GET","test.php?q="+str,true); [/code] You should use a full URL, starting with http.

Member Avatar for speer25
0
96
Member Avatar for bello.ojo

You should provide a full URL, not just ajax.php in the xhr.open() Next time, please use code tags.

Member Avatar for SolidSolutions
0
119
Member Avatar for ditty
Member Avatar for saadi06

What error do you get ? Did you try to execute that command line manually ?

Member Avatar for saadi06
0
89
Member Avatar for daviddoria
Member Avatar for grandfso

If your query results are ordered by month and the order you want in your table, then you can do it in a single loop. [code] $current_month = 'none'; // ... get your query results while ($row = mysql_fetch_assoc($result)) { if ($current_month <> $row['month']) { // End previous table, unless …

Member Avatar for pritaeas
0
117
Member Avatar for lyrico

You need to use the php.exe to execute the file. So in your scheduler you'd add something like this: [code=text] c:\PHP\php.exe -f "c:\Apache\htdocs\folder\phpfile.php" [/code]

Member Avatar for lyrico
0
2K
Member Avatar for Pundia

Have a look at [URL="http://www.swissdelphicenter.ch/en/showcode.php?id=1664"]this example[/URL]. It uses the TStringList CustomSort. You can use the same method to sort the by the objects.

Member Avatar for Pundia
0
836
Member Avatar for ello
Member Avatar for lf.gene

Use a counter. Start from 0. If the counter modulus 4 is 0 then output a tr tag, then output the td, after that if it is 3 then output a /tr tag. Your fun ends when the counter reaches 15.

Member Avatar for lf.gene
0
211
Member Avatar for derozza

Try the following: [CODE] SELECT approval_date FROM itemdetail WHERE CONCAT(substr(approval_date,6,4),'/',substr(approval_date,4,2),'/',substr(approval_date,1,2)) BETWEEN '2011/01/01' AND '2011/01/15' [/CODE] Small typo in the previous post I think.

Member Avatar for smantscheff
0
107
Member Avatar for docjon
Member Avatar for diafol
0
162
Member Avatar for pritaeas

SetAutoSubClass() has been deprecated in newer versions of Delphi. Can anyone tell me what to replace it with ? I cannot find it in the Delphi 2009 OLH, nor in the VCL source (Forms).

Member Avatar for pritaeas
0
142
Member Avatar for prem2

The variable $bb is declared [URL="http://php.net/manual/en/language.oop5.static.php"]static[/URL] in the latter example. But I suggest you'd better read this [URL="http://php.net/manual/en/language.oop5.php"]manual[/URL] to get a better understanding between classes and objects.

Member Avatar for Shanti C
0
126
Member Avatar for mubat
Member Avatar for mubat
0
163
Member Avatar for newbie14

Are you sure that [icode]t1.sendMessage(phoneNumber,messageSend)[/icode] is a blocking function ? Perhaps it starts a new thread and therefor returns control instantly.

Member Avatar for newbie14
0
358
Member Avatar for youlichika
Member Avatar for koolander

A map is nothing more than a search replace list, so you could just use one RewriteRule for every line in the map.

Member Avatar for koolander
0
115
Member Avatar for Honeydew

You must have some idea, about what to put where. What do you think ?

Member Avatar for pritaeas
0
163
Member Avatar for prem2

Your display function refers to $this (the current object). If you try to use the scope operator (trying to access a class function), $this is not defined, as there is no object instantiated.

Member Avatar for prem2
0
251
Member Avatar for imti321
Member Avatar for gunjannigam
Member Avatar for gunjannigam
0
150
Member Avatar for crenfrow

[QUOTE=Borzoi;1443607]Also, there is no part of that code where you send the mail. Lines 25 and 26 wouldn't cause the mail to send as you're just putting it into a variable.[/QUOTE] Not true, it will send. The value returned is a boolean to show whether or not the mail was …

Member Avatar for pritaeas
0
139

The End.