8,966 Posted Topics

Member Avatar for Buppy

A [URL="http://php.net/manual/en/class.domnode.php"]DOMNode[/URL] has a property attributes, also a list. Perhaps [URL="http://php.net/manual/en/function.domnode-dump-node.php"]this page[/URL] can help.

Member Avatar for pritaeas
0
84
Member Avatar for Deminitous
Member Avatar for Deminitous
0
503
Member Avatar for adityamadhira

Please explain what you want. Something like [URL="http://ajaxcrud.com/"]this[/URL] or [URL="http://datatables.net/"]this[/URL] perhaps?

Member Avatar for pritaeas
0
290
Member Avatar for javedsai
Member Avatar for ceeandcee

Always [iCODE]mysql_close()[/iCODE] your connections when you're done. If you don't they will remain idle for 180 seconds (default).

Member Avatar for pritaeas
0
91
Member Avatar for abhishek2301

Using the command line or PHP for execution are actually two different user(groups). Make sure your web user (for PHP) is allowed to execute the command.

Member Avatar for pritaeas
0
107
Member Avatar for martin11ph

The [URL="http://www.php.net/manual/en/pdf.installation.php"]installation chapter[/URL] points to the [URL="http://pecl.php.net/package/pdflib"]pecl website[/URL].

Member Avatar for pritaeas
0
153
Member Avatar for anthonyjpv

You can use [URL="http://php.net/manual/en/language.types.array.php"]unset[/URL] on an array element to remove it from the array.

Member Avatar for karthik_ppts
0
5K
Member Avatar for softDeveloper

Isn't there a [iCODE]?[/iCODE] missing? Anyway, is your text url encoded, or do you just send plain text, including spaces and special characters?

Member Avatar for softDeveloper
0
142
Member Avatar for xilix
Member Avatar for refresher
Member Avatar for pritaeas
0
210
Member Avatar for filipgothic
Member Avatar for filipgothic
0
1K
Member Avatar for roydimeo

[QUOTE=roydimeo;1708438]I don't know what social bookmarking is and how I then use it. Can someone please explain?[/QUOTE] It's providing easy methods for your visitors to add bookmarks to your site/article. You can recognize it everywhere. The like button (Facebook), the tweet button (Twitter), and many more. If you want an …

Member Avatar for Highave
0
474
Member Avatar for trektrak
Member Avatar for pritaeas
0
54
Member Avatar for klemme

If you look at the [URL="http://api.jquery.com/animate/"]manual[/URL], you can see that you can pass a complete function to animate. If you provide this, that function will trigger once the animation is done. [CODE] $(this).stop().animate({ opacity: 1.0 }, 500, function(){ // your next animation code goes here. }); [/CODE]

Member Avatar for pritaeas
0
206
Member Avatar for jacksantho
Member Avatar for pritaeas
0
84
Member Avatar for jerry4all

This should be provided by your API (bulksms in your case). I advise you contact them, or perhaps it is in their documentation.

Member Avatar for jerry4all
0
156
Member Avatar for simplypixie

I know you already chose for CSS, but I want to add a point for others having to make a similar choice. If you choose CSS you can allow your products to wrap around the width of the page. In the site where I used this I can set my …

Member Avatar for stultuske
0
145
Member Avatar for mynameisfish.22

I think he means he wants to implement pagination. Anyway, if you search this forum, you'll find several threads on the subject.

Member Avatar for pritaeas
0
162
Member Avatar for fredy91

The Content-Length header is missing for one. Search this forum, there are some threads about this.

Member Avatar for fredy91
0
3K
Member Avatar for Martin C++
Member Avatar for Martin C++
0
206
Member Avatar for fredfletcher
Member Avatar for fredfletcher
0
161
Member Avatar for accra
Member Avatar for accra
0
163
Member Avatar for danielbala
Member Avatar for danielbala
0
82
Member Avatar for Buppy

It's an Excel thing, although on my 2007 at work, the charset is detected correctly. If you use the import dialog, you can select which charset to use.

Member Avatar for pritaeas
0
58
Member Avatar for davy_yg

[url]http://validator.w3.org/docs/errors.html[/url] Most are very straight-forward: 1. assuming missing "body" start-tag: <body> is missing. 2. Error: ID "body" already defined: All id="" attributes must be unique 3. etc... I suggest you read up on the (X)HTML specifications...

Member Avatar for davy_yg
0
400
Member Avatar for vizz

You can use [iCODE]echo "&raquo;";[/iCODE] You have to use a font that supports it though.

Member Avatar for pritaeas
0
62
Member Avatar for dineshswamy
Member Avatar for super-duper

If you want to do it yourself, [URL="http://webdevcodex.com/tutorial-installing-apache2-php5-mysql5-phpmyadmin3-windows-7-vista/"]here[/URL]'s some help.

Member Avatar for diafol
0
294
Member Avatar for magicmarkuk

Yes, a backslash is an [URL="http://php.net/manual/en/regexp.reference.escape.php"]escape character[/URL]. So if you want to use it, you'll have to escape it, so use [iCODE]\\[/iCODE] Note, that you are allowed to use a forward slash, even on Windows.

Member Avatar for magicmarkuk
0
205
Member Avatar for marios_neo

In your calls to the function, the comma is missing: [iCODE]makeVisible('one', ['two', 'three'])[/iCODE]

Member Avatar for marios_neo
0
146
Member Avatar for jayhall
Member Avatar for jayhall
0
84
Member Avatar for klemme

It's MINUTE, without the 'S'. [url]http://dev.mysql.com/doc/refman/5.6/en/create-event.html[/url]

Member Avatar for klemme
0
154
Member Avatar for aithabuddy
Member Avatar for Golffor1

In addition to simplypixie's answer: mysql_query results do no contain the [iCODE]table.column[/iCODE] syntax. Your [iCODE]$row[/iCODE] will contain [iCODE]player_email, Player_First_Name and paid_thru[/iCODE]

Member Avatar for pritaeas
0
92
Member Avatar for fusionking
Member Avatar for klemme

I was wondering if you want create/delete events per cart. If so, wouldn't it be easier to run a scheduled task every 5 minutes, and update your tables with a last-used timestamp?

Member Avatar for hag++
0
162
Member Avatar for fire eaters

Use a calculated column that sums all your 0/1 columns. Then you can just add [iCODE]WHERE summed > 0[/iCODE]

Member Avatar for pritaeas
0
124
Member Avatar for patrick1981

You can use a .htaccess file with the following content: [CODE=text] RewriteEngine On RewriteCond %{HTTPS} on RewriteRule (.*) http://www.example.com/$1 [R=301] [/CODE]

Member Avatar for patrick1981
0
223
Member Avatar for strongpot

[iCODE]=[/iCODE] is for assignment, [iCODE]==[/iCODE] for [URL="http://php.net/manual/en/language.operators.comparison.php"]comparison[/URL].

Member Avatar for strongpot
0
189
Member Avatar for Awilson089

I guess you want something like [URL="http://ajaxcrud.com/"]this[/URL] ?

Member Avatar for Awilson089
0
181
Member Avatar for vizz

Well, of course. Once you click the link, the page is redirected, and Home is the one selected again. I think you should just use PHP to determine which class to highlight, instead of defaulting to Home.

Member Avatar for pritaeas
0
372
Member Avatar for demon8

Read [URL="http://www.daniweb.com/web-development/php/threads/191031"]this thread[/URL] on how to include error checking in your code, so you can track if something fails.

Member Avatar for demon8
0
91
Member Avatar for akashbarot51

Your mysql_query misses the closing parenthesis. Next time use code tags!

Member Avatar for pritaeas
0
137
Member Avatar for anthonyjpv

[QUOTE=anthonyjpv;1760436]I am trying to insert a record in table 2 which PK doesnt exist yet in table 1[/QUOTE] This is precisely what FK's are meant to prevent. I am not sure if MySQL INNODB tables have/support nullable FK's, but that's what you need.

Member Avatar for pritaeas
0
134
Member Avatar for swilliamrobert

You cannot always force it. My email settings are set specifically to plain text. You could try to use a mailing tool (PHPMailer for example). Most of them have a lot more settings then the default mail() function. All of those specific headers are already built for you, so you …

Member Avatar for pritaeas
0
124
Member Avatar for anthonyjpv

If you use a tool like log4php for example, you define in your configuration file where the logging has to go. So if it some point you no longer want to log to file, you just change the configuration. Personally I prefer database, because it makes it easier to filter …

Member Avatar for anthonyjpv
0
87
Member Avatar for cartergarth

From [URL="http://php.net/manual/en/functions.arguments.php"]the manual[/URL] (below example #4): "[B]The default value must be a constant expression[/B], not (for example) a variable, a class member or a function call."

Member Avatar for pritaeas
0
224
Member Avatar for garden4ork

Start by looking at [iCODE]Memo.Lines.SaveToFile()[/iCODE], if you want to append to an existing file, have a look at [iCODE]SaveToStream[/iCODE]. The latter is IMHO easier to use when appending, because you can first load an initial file into it, and then pass it to the function.

Member Avatar for pritaeas
0
92
Member Avatar for magicmarkuk

This should do it: [CODE=sql] INSERT INTO topics ( topic_type ) SELECT CASE WHEN sticky = 'y' THEN 1 WHEN announcement = 'y' THEN 2 WHEN announcement = 'a' THEN 3 ELSE 0 END CASE FROM setup [/CODE]

Member Avatar for magicmarkuk
0
165

The End.