8,966 Posted Topics

Member Avatar for Clanstrom

> I can't seem to find anything to extend. If you extend PDO, it means you add functionality YOU need. This can be anything. For example, you can create a new method that accepts an object as a parameter, and then builds the query based on the content of that …

Member Avatar for diafol
0
464
Member Avatar for laura301019

> Having trouble getting my XML schema to work What is not working?

Member Avatar for pritaeas
0
100
Member Avatar for jamiecarmichael101

> I can't seem to find any help online Have you tried the forum at the wamp website? I don't know what OS you're on, but the downloads at the site are newer (Apache 2.4.2 – Mysql 5.5.24 – PHP 5.4.3).

Member Avatar for jamiecarmichael101
0
1K
Member Avatar for iLikePHP

There are more possibilities than the one you mention. Just because you like one solution, doesn't mean it's viable for every other project.

Member Avatar for iLikePHP
1
214
Member Avatar for iLikePHP

> Who uses PingrGlobe? DaniWeb Be sure to get Dani's permission for such a quote. This implies DW is actively using your site, which may not be the case. If it's not, false advertising may harm you in the long run.

Member Avatar for iLikePHP
1
242
Member Avatar for facarroll

All these things you mention are the result of an upgrade of PHP. My guess is they upgraded to 5.4, which triggers these messages.

Member Avatar for Dani
0
127
Member Avatar for 123pythonme

http://www.daniweb.com/community-center/threads/445041/delete-a-post-from-daniweb/

Member Avatar for Mike Askew
0
269
Member Avatar for cgull

Both options can be fine, it all depends on what your class is supposed to do. There is no one correct answer to this question.

Member Avatar for jkon
0
219
Member Avatar for <M/>
Member Avatar for <M/>
0
103
Member Avatar for bryanlouis.dionisio
Member Avatar for aVar++

> we pretty much are responsible for what happens in the world because we always happened to get involved You mean you (US) make it your business, even if it's none of your business. There's a difference.

Member Avatar for HiHe
3
2K
Member Avatar for ChopTop69

> I hope this isn't too vague, not sure what the best way is to explain it. It would help if you include your table structure and test data. A sample of what the output should look like would be helpful too. It's very hard to answer this seeing just …

Member Avatar for ChopTop69
0
181
Member Avatar for sriramkarthick

https://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html#function_adddate

Member Avatar for pritaeas
0
115
Member Avatar for GeekPlease

Looks like the effect you were working on, combined with a fixed background image.

Member Avatar for theHop
0
122
Member Avatar for dean.ong.14

You're missing a line of code: $result = mysql_query($query); And your query needs a fix: $query = "SELECT `ID` FROM taranaki WHERE ID='45'"; You need to use backticks around `ID` instead of single quotes.

Member Avatar for Assembly Guy
-1
8K
Member Avatar for gahhon

That's a strange way of going about it, but you'll need to run something like this: ALTER TABLE Category ADD COLUMN NewColumn VARCHAR(64)

Member Avatar for gahhon
0
185
Member Avatar for lewashby

That should be: UPDATE users SET hash = '' WHERE email = 'emailaddress@hotmail.com' `DELETE FROM` is used to delete entire rows.

Member Avatar for pritaeas
0
100
Member Avatar for annyangel
Member Avatar for castajiz_2
Member Avatar for castajiz_2
0
247
Member Avatar for Nastik
Member Avatar for pritaeas

I'm starting an external application with `Process.Start()`. I'm looking for code that can check if this process is already started, and if so bring it to the front. The only solutions I've found so far require me to import `user32.dll`. Question: are there solutions that do not require the import?

Member Avatar for Ketsuekiame
0
198
Member Avatar for actolearn

echo '<h2><a href="http://www.example.com/' . $results['url'] . '">' . $results['title'] . '</a></h2><p>' . $results['shortdesc'] . '</p>';

Member Avatar for actolearn
0
228
Member Avatar for donedeal

I have to chip in, that nothing of the above requirements are easier in one language or the other. If you are a chief architect, you should take into account the knowledge of the people who have to build it. I have used both PHP and ASP.NET, my personal preference …

Member Avatar for irum niazi
0
341
Member Avatar for mutago
Member Avatar for bostjan33
Member Avatar for Dani
Member Avatar for Dani
1
237
Member Avatar for null_pointer
Member Avatar for Assembly Guy

It is possible that the forum got a spam post, which is then deleted, but doesn't remove the read icon.

Member Avatar for Assembly Guy
0
308
Member Avatar for son jo
Member Avatar for Thomas84
0
441
Member Avatar for B0716L
Member Avatar for johnanthony.sanz
Member Avatar for bradly.spicer
Member Avatar for Mapper99
Member Avatar for Mapper99
0
2K
Member Avatar for Tko_1

`file_get_contents` returns a string. So you could split on new lines and do the search line-by-line, or load with `file()` which returns an array.

Member Avatar for Tko_1
0
258
Member Avatar for Fireprufe15

> Load from Database, gives me a memory address access violation error: On what line? For the insert, it looks like you are mixing the syntax for an ADOQuery with an ADOTable. I need to test this though, will have to reproduce somehow to be more specific.

Member Avatar for Hemo2013
0
2K
Member Avatar for saadi06
Member Avatar for IIM
0
661
Member Avatar for logicslab

A stored procedure cannot run PHP code if that's what you mean. A cron job is more suited for the job IMO.

Member Avatar for pritaeas
0
170
Member Avatar for sruthisru
Re: ajax

Your problem is a little vague. Perhaps you can explain it with some code?

Member Avatar for sruthisru
0
168
Member Avatar for tibormarias

The above works, provided the number column is a varchar, and the value in `$trimmed` has to be an exact match. So if that is not what you want, you'll have to split up the `WHERE` into separate parts. Most common is: $query = "SELECT * FROM `table` WHERE `street` …

Member Avatar for tibormarias
0
132
Member Avatar for Indians
Member Avatar for Indians
0
280
Member Avatar for JayGeePee
Member Avatar for paulkd
0
202
Member Avatar for nitin1
Member Avatar for pritaeas
0
121
Member Avatar for somjit{}
Member Avatar for castajiz_2

Depends on how you created it. Read more [here](http://developer.windowsphone.com).

Member Avatar for pritaeas
0
82
Member Avatar for Christine121
Member Avatar for Christine121
0
200
Member Avatar for GeekPlease

Try this: <!-- create animation for right panel --> $(".right").hover(function(){ $(".left").stop().animate({width:'toggle'},350); $(".wrap").css("background-color","gray"); }); <!-- create animation for left panel --> $(".left").hover(function(){ $(".right").stop().animate({width:'toggle'},350); $(".wrap").css("background-color","black"); });

Member Avatar for GeekPlease
0
301
Member Avatar for praba_web

> after i have uploaded to server(cpanel) it is not working. What exactly is not working? Did you also upload the database? Perhaps you need to change the credentials.

Member Avatar for pritaeas
0
220
Member Avatar for lloydsbackyard
Member Avatar for famade
Member Avatar for shlokka

You have to reset the auto increment column. What database are you using?

Member Avatar for JorgeM
0
97

The End.