8,966 Posted Topics

Member Avatar for LastMitch

Paid IDE's for Windows include Zend, PhpStorm and PhpEd. [Here](https://en.wikipedia.org/wiki/PHP_IDE#PHP)'s a comparison.

Member Avatar for LastMitch
2
581
Member Avatar for papadarl

You may have to explain a little more about what you have and what you can't find.

Member Avatar for phorce
0
83
Member Avatar for PHPuss
Member Avatar for pritaeas
0
139
Member Avatar for monkeybut
Member Avatar for monkeybut
0
270
Member Avatar for rotten69

The only reference I can find is in [underscore.js](http://documentcloud.github.com/underscore/#compact)

Member Avatar for Taywin
0
1K
Member Avatar for xbat

Usually you can set this in your control panel. In .htaccess I think it is: Options -Indexes

Member Avatar for pritaeas
0
97
Member Avatar for LRNPHP
Member Avatar for pritaeas
0
510
Member Avatar for rotten69

I am using PhpStorm at the moment. I do not use CakePhp myself, but there is a way to get them working together, mentioned [here](http://blog.hwarf.com/2011/08/configure-phpstorm-to-auto-complete.html). I stopped using Eclipse, so I cannot say if there is something decent available.

Member Avatar for rotten69
0
192
Member Avatar for Steve97

> I keep getting the same error messages over and over again Show the error messages. Line 73 has a redundant else which may be causing issues too.

Member Avatar for pritaeas
0
194
Member Avatar for <M/>

> it doesn't seem to work What doesn't work? > can someone tell me why it doesn't work Try to write valid HTML first. Style belongs in the head. Script in the head or body, not in between. Did you download the jquery file?

Member Avatar for JorgeM
0
164
Member Avatar for appooti
Member Avatar for pritaeas
0
56
Member Avatar for adishardis

> $data[] = array($result['Name'],$result['Value']); $data[] = array(count($data), $result['Value']);

Member Avatar for adishardis
0
1K
Member Avatar for logicaweb

Do you need to do this in SQL, or is in PHP code good enough? If you have all variables, why query again?

Member Avatar for logicaweb
0
326
Member Avatar for devianleong

Your query failed. Do this: $result = mysql_query("SELECT * FROM rentcustomer WHERE Expiredtime = CURDATE()") or die(mysql_error());

Member Avatar for pritaeas
0
253
Member Avatar for GrEEfInd
Member Avatar for Riu 2009
Member Avatar for thecameraman
Member Avatar for Morta

I wonder why you want to do that client-side, it removes all the security you are looking for.

Member Avatar for pritaeas
0
153
Member Avatar for AmrReflection

> ASP.net or PHP Choose what you are most comfortable with. If you want to learn, write the forum in both.

Member Avatar for blocblue
0
87
Member Avatar for carlos.molina.31337
Member Avatar for iamthwee
Member Avatar for Squidge
Member Avatar for Squidge
0
205
Member Avatar for scaiferw
Member Avatar for scaiferw
0
115
Member Avatar for akasekaihime

You can only download trials, AutoCad is not free software. Search on some archiving websites, perhaps the 2010 version is still available for (trial) download (although I doubt it).

Member Avatar for JorgeM
0
220
Member Avatar for phpHelp
Member Avatar for fafa.gagga
Member Avatar for yousaf1214
Member Avatar for newuser17

If you use a tool (like InstallShield) you can just add a dialog where they input the data, and you can write it to the file in script. You just need to find a tool that you are comfortable with.

Member Avatar for newuser17
0
543
Member Avatar for dany12

What is the name of the actual file, I guess index.html ? RewriteRule ^index$ index.html [R=301,L] So when you now use `index` in the URL, `index.html` will be called.

Member Avatar for dany12
0
78
Member Avatar for pritaeas

In addition to [my post in this thread](http://www.daniweb.com/web-development/php/threads/429740/php-best-practice#post1841569) I've decided to post an extended example, which also implements functions for inserts and updates. I hope the code is straightforward enough. If not, reply and let me know. The table structure I've used for my test is the following: CREATE TABLE …

Member Avatar for extjac
4
453
Member Avatar for ravz414

Performance speed in these cases is usually defined by good database design and server management, and caching (query and output). I'd suggest you use the path for which your team has the best skills.

Member Avatar for pritaeas
0
61
Member Avatar for Raakesh399
Member Avatar for Raakesh399
0
116
Member Avatar for vizz

I think that on these kind of sites expecting a reply is little naive. Most projects will get so many bids, they won't take the time to reply to them all. I don't have an account, but do they have some kind of skills page? Anything you can put there …

Member Avatar for vizz
0
220
Member Avatar for laetitia--
Member Avatar for minbor

I think you can only do that if you specify another `Provider`. Is accessing the other database from code allowed? Another option would be to write a database trigger on A (assuming they share a local user).

Member Avatar for minbor
0
170
Member Avatar for Stardemos

If the column is a varchar, then you need single quotes around the value in your query. Like this: UPDATE table SET varcharcolumn='value' Your query doesn't have any.

Member Avatar for Stardemos
0
166
Member Avatar for Stardemos

You need to fetch the results. `mysql_query` returns a resource, not a value. Apart from that, you can get all values in a single query.

Member Avatar for Stardemos
0
512
Member Avatar for arctushar

Of course you can use plain functions. For reusability's sake classes and methods are usually preferred.

Member Avatar for fpaquin
0
1K
Member Avatar for apanimesh061

Store your href's in an array and use [this function](http://php.net/manual/en/function.array-unique.php).

Member Avatar for apanimesh061
0
1K
Member Avatar for devilhacker

Here is a nice introduction: http://diveintohtml5.info/geolocation.html It's not in PHP, because it should be determined client side.

Member Avatar for almostbob
0
924
Member Avatar for SBA-CDeCinko

http://www.stunicholls.com/various/jquery-headline-changer.html Am positive it's a good start, and relatively easy to change it to the transparency you need.

Member Avatar for pritaeas
0
234
Member Avatar for LastMitch

Your quote: > MYSQLI is a Relational database another words it is a DATABASE! From the Wiki: The MySQLi Extension (MySQL Improved) is a relational database **driver** The highlight is mine. As you can see, misquotes are easily made.

Member Avatar for LastMitch
0
273
Member Avatar for GarciaPL

Interesting. I think the rise in REST occured with the success of mobile devices. I do not have any sources though. As for REST replacing SOAP, I don't think it is true. Yes, it is very popular, but if you need secure services, SOAP is still much more reliable than …

Member Avatar for GarciaPL
0
239
Member Avatar for trishtren

> does it check it testparam is > 0 Unequal to zero, read about it [here](http://php.net/manual/en/language.types.boolean.php).

Member Avatar for pritaeas
0
220
Member Avatar for Arash-Sh

> stackoverflow script No, the original is not for sale, but there are clones out there.

Member Avatar for pritaeas
0
211
Member Avatar for divyakrishnan
Member Avatar for hccaresense
Member Avatar for phaedrusGhost

Create an account if you can and find out. Most likely it is some plugin. For example what plUpload does. It can be Flash, Silverlight, JSP. As long as the connection doesn't fail, it will act as an intermediate between client and server. Basically it will keep running until it …

Member Avatar for phaedrusGhost
0
134
Member Avatar for Andrei15193
Member Avatar for VaibsBrainyStud

The End.