8,966 Posted Topics

Member Avatar for vinit3590
Member Avatar for cucolino

Unfortunately, this is an [XE3](http://www.embarcadero.com/products/delphi) feature. Quote: *"With Delphi’s new Metropolis UI, you can easily create apps with the new Windows 8 UI styling, including, touch enablement, ..."*

Member Avatar for pritaeas
0
584
Member Avatar for while(!success)
Member Avatar for ajitdas57
Member Avatar for Taywin
0
103
Member Avatar for skn123

Check the code in precheck.php. The code you are showing appears to be correct.

Member Avatar for pritaeas
0
108
Member Avatar for Rajshri Patil
Member Avatar for chris99
Member Avatar for riahc3
Member Avatar for pritaeas
0
123
Member Avatar for davidmt

If you installed (another) wamp, then you'll need to copy his files to the wamp\www folder.

Member Avatar for pritaeas
0
102
Member Avatar for hwoarang69

After :active it will use :visited. However, if you are paranoid like me and have browser history disabled, the next time I visit the page it will be normal again (not active, and not visited). #button1:active, #button1:visited { color: green; }

Member Avatar for pritaeas
0
82
Member Avatar for Suzie999

You can point the audio to a PHP file (guess.php). It can return anything you want. If you set the right headers it can return an audio file too.

Member Avatar for Suzie999
0
281
Member Avatar for amith_ami
Member Avatar for vizz

So the bullet map is a representation of the actual div's? First step would be to read all div's and their positions.

Member Avatar for vizz
0
300
Member Avatar for M.Waqas Aslam
Member Avatar for adam_k
0
245
Member Avatar for ganesh641

I am not sure GMail allows this, but you can try to save the cookies. It's likely GMail sets cookie on login, and after redirect it can't find them. Besides that, if you are just trying to get to your email, you can enable POP or IMAP in GMail and …

Member Avatar for veedeoo
0
5K
Member Avatar for giovannitao

If you are talking about styling, you should look at the CSS and not the PHP side of the thing.

Member Avatar for gon1387
0
617
Member Avatar for hwoarang69

> getting a error Which one? Technically it is correct PHP syntax (apart from the missing space between echo and the double quote perhaps), but not valid HTML/Javascript syntax.

Member Avatar for broj1
0
119
Member Avatar for dany12

First click triggers animate left 0px... that does nothing. See the example in [the documentation](http://docs.jquery.com/Events/toggle).

Member Avatar for dany12
0
239
Member Avatar for ratanji

It depends on you data, but PHP has several functions like [is_numeric](http://php.net/is-numeric) that can help you.

Member Avatar for pritaeas
0
83
Member Avatar for AARTI SHRIVAS
Member Avatar for xXghostXx

Finfo can only be read. You cannot set it's Length property. I guess you mean to do this: public int File_Size() { int TotalFileSize = 0; DirectoryInfo X = new DirectoryInfo("C:\\Users\\Samer\\Desktop\\1"); FileInfo[] FileSize = X.GetFiles(); foreach (FileInfo Finfo in FileSize) { TotalFileSize += Finfo.Length; } return TotalFileSize; }

Member Avatar for tinstaafl
0
2K
Member Avatar for amyl

You'll just need to include a file that will output your form, something like: // small_form.php echo <<<EOT <form method="post" action="your_form_handler.php"> <!-- your inputs here --> <input type="submit" /> </form> EOT; Then you can just: include 'small_form.php'; where needed.

Member Avatar for amyl
0
237
Member Avatar for ganesh641

PHP doesn't manage the HTTP connection. This value just shows what it is set to. You'll need to check your webserver settings (Apache/IIS).

Member Avatar for ganesh641
0
451
Member Avatar for MARKAND911

[Here](http://www.devasp.net/net/articles/display/1293.html) are some examples.

Member Avatar for pritaeas
0
102
Member Avatar for divyakrishnan
Member Avatar for jaimehopkin

index/noindex - Store this page for indexing, or not follow/nofollow - Follow the links in the current page, or not archive/noarchive - Keep a cache of this page, or not

Member Avatar for Jobsikd
0
122
Member Avatar for cucolino

You can replicate it, but it is not necessary. Move the procedures for accessing your DLL to a separate unit, then you can include that one into all forms.

Member Avatar for pritaeas
0
293
Member Avatar for jonsan32

Do you have html/head/body tags (they are not in your pasted code)? IE is known to mess up when the HTML is invalid.

Member Avatar for Airshow
0
722
Member Avatar for sethwcaton
Member Avatar for thechampp

You can reference the other solution. If the class is on it's own, you could also choose to add it as a linked file. If you are going to re-use that class, I suggest creating a separate assembly containing it. Then you can reference that new assembly in both solutions.

Member Avatar for pritaeas
0
67
Member Avatar for honhito.troy

You can do without the quotes if id is an integer column. I think the query fails because $id does not have a value.

Member Avatar for pritaeas
0
123
Member Avatar for christinetom
Member Avatar for christinetom
0
108
Member Avatar for <M/>

> PLEASE TELL ME IF I WORDED MY QUESTION WRONG I'd call it: "Top stats per (sub) forum"

Member Avatar for <M/>
0
187
Member Avatar for pratham3090

A cursor is basically a table, generated from a query, so you can iterate through the rows. It is usually used in a stored procedure or trigger.

Member Avatar for adam_k
0
133
Member Avatar for salford6129

Try [this example](http://www.dotnetperls.com/serialize-list). Personally, I think it's well explained.

Member Avatar for salford6129
0
200
Member Avatar for Venter

> is it possible to retrive the all data at once using php Or jquery I looked at the code, but there is no function to retrieve all keys/values at once. Either request a feature, or fork the project and add it yourself. PHP runs server-side, so has no direct …

Member Avatar for gon1387
0
2K
Member Avatar for asaidi
Member Avatar for asaidi
0
78
Member Avatar for kokoko

What do you have so far, and what are the problems you are having?

Member Avatar for kokoko
0
141
Member Avatar for dre-logics
Member Avatar for pritaeas
0
142
Member Avatar for rangariraim1

[Here](http://www.daniweb.com/software-development/vbnet/threads/439854/vb-update-mysql-table)'s a start.

Member Avatar for pritaeas
0
56
Member Avatar for panatda.tokhume

The file contents is not generated, because you try to loop the result set a second time, without resetting the internal file pointer. Uses mysql_data_seek before the second loop.

Member Avatar for panatda.tokhume
0
179
Member Avatar for hwoarang69

> why cant i do this? $row = mysql_fetch_assoc($sql); Should work just fine. No need for the while.

Member Avatar for pritaeas
0
128
Member Avatar for bibiki

Something like this: SELECT firstName, COUNT(*) AS nameCount FROM someTable WHERE lastName = '' GROUP BY firstName ORDER BY nameCount DESC LIMIT 5

Member Avatar for bibiki
0
145
Member Avatar for rahul_njain

My guess is you have this code in your Main. Main cannot be async. [Async and Await](http://nitoprograms.blogspot.nl/2012/02/async-and-await.html) is a nice article on this topic.

Member Avatar for pritaeas
0
236
Member Avatar for suavedesign

The demo you showed is like something I have written some time ago. You can find it [here](http://www.pritaeas.net/view/articles/faq-with-jquery). Note that the jQuery version used is outdated.

Member Avatar for pritaeas
0
50
Member Avatar for kshahnazari

> Permission denied For some reason you are not allowed to open that file for writing. What setup are you using?

Member Avatar for pritaeas
0
108
Member Avatar for joshl_1995

Why not build an API around it. Create a web service giving access to your data. That way there's no direct threat to your database, and you'll have many ways to protect it, and you are in complete control.

Member Avatar for pritaeas
0
283
Member Avatar for 4BoredomDotCom

I did. Resurrecting such an old thread with the only reply being that it's in the wrong forum is completely pointless.

Member Avatar for pritaeas
0
300
Member Avatar for <M/>
Member Avatar for hwoarang69

Every time you click the more button you should increase a variable, and then multiply by 8, to use in the LIMIT clause. The first time would output: <form action="?page=2"> <button type='submit' id='load_button' class='button'>Load 8 more items</button> Then you know to get 2 times the number of items. Each time …

Member Avatar for hwoarang69
0
164

The End.