8,966 Posted Topics
Re: Something like this probably. [CODE=javascript] result = subject.match(/<input type="text" name="mobile" value="(.*?)"\/>/g); [/CODE] | |
Re: Is this a mysql or oracle question? You have posted your question twice. | |
Re: How did you do the import ? You have to select a database first, but how to do that depends on your method. | |
Re: You are trying to redirect in a PHP file that is called via AJAX. That won't work. You should return redirect info to your AJAX call, so you can redirect using Javascript in your 200 success function. | |
Re: [CODE] SELECT * FROM tblMasterData MD, tblEventAlert EA, tblDevice D, tblEvent E WHERE MD.eventAlertID = EA.eventAlertID AND EA.eventAlertID = D.eventAlertID AND D.eventAlertID = E.eventAlertID AND E.eventAlertID > 0 [/CODE] | |
Re: Perhaps [URL="http://delphi.about.com/od/delphitips2009/qt/preserve-code-folding.htm"]this article[/URL] will help. | |
Re: One way would be to create a calculated column that concatenates both fields with the smallest first, so you can order and distinct that column. Although that may work, I guess there has to be a better way. | |
Re: Do not forget to check out [url]http://w3fools.com/[/url] | |
Re: Does your table only have one column ? Did you try adding the column name to your insert query? | |
Re: You got this example from SO ? It is designed to work with gmail, so change your sender email addresses and username and password. I am assuming you already have PEAR installed. | |
Re: What language are you using ? Pascal ? You can create your own variant record and pass an array of that. Not sure if [iCODE]array of const[/iCODE] will work. | |
Re: Make a script that does what you want, and then use a scheduler to run it once a day. | |
Re: I'd would be most helpful to see a list of those you already tried and don't want. | |
Re: Your installation doesn't have a mail server on localhost you can connect to. I suggest you search this forum for phpmailer. | |
| |
Re: Change line 20 to this: [CODE] echo "<div class='images_thumb'><a href='http://pashtoaudio.com/tahir_upload/".$show_img."'><img src='/tahir_upload/".$show_img."'></img></a></div>"; [/CODE] Note the [iCODE]/[/iCODE] in front of your image source, and it should be [iCODE]src[/iCODE] (not scr). | |
| |
Re: If you show your table structure, I am sure someone can give you a query that works. | |
Re: [CODE] SELECT clientID, clientName FROM tblClient WHERE clientStatus='a' AND clientID NOT IN (SELECT clientID FROM tblCDSValidity) ORDER BY clientName [/CODE] | |
Re: Do you want to load it in an iframe, or do you want to display part of the feed/page within your own document (without an iframe). For the last one, you can parse the feed's xml with SimpleXML for example. Then change the links to load your own page, which … ![]() | |
Re: [CODE] echo isset($page_title) ? $page_title : 'Welcome'; [/CODE] | |
Re: If you change line 1 to: [CODE] $car = "porche.jpg"; [/CODE] it will work. You should never use an absolute path to a windows folder, because once you upload it to a webhost, it will no longer work. | |
Re: What are you going to develop ? Decide which package supports best what you need. There is also WampServer and XAMPP. | |
Re: [QUOTE=;][/QUOTE] [quote]Error: Column count doesn't match value count at row 1[/quote] This error is caused by something like this: [code=sql] INSERT INTO table (col1, col2) VALUES ('val1', 'val2', 'val3') [/code] so make sure the count matches before and after VALUES. Another issue is on line 41. The query says INSERT … | |
Re: You need a WHERE clause to link the two result together. | |
Re: It's a wordpress thing: [url]http://faq.wordpress.net/view.php?p=50[/url] ![]() | |
Re: This may help: [url]http://mc-computing.com/languages/delphi/delphi_serialio.htm[/url] | |
| |
Re: It depends on the database you are using whether or not this is possible. | |
Re: What do you want to know ? You can always start with [URL="http://httpd.apache.org/docs/2.2/howto/htaccess.html"]the manual[/URL]. | |
Re: Most hosts don't provide an option for this (and I don't think they will allow you to use root). I think you should use the username and password as provided by them. Also, you should be able to create new users in your cPanel, then you can create your own … | |
Re: What language are you going to use ? ![]() | |
Re: It means your script already outputted something, before you called the header function. It can be an echo, or some dangling whitespace in your code. | |
Re: If you want to write your own, I think you could start easy by replacing RTF tags for HTML tags. For example replace [iCODE]\b[/iCODE] with [iCODE]<strong>[/iCODE], [iCODE]\b0[/iCODE] with [iCODE]</strong>[/iCODE] and likewise for [iCODE]\i[/iCODE] being [iCODE]<em>[/iCODE]. It depends on how far you want to take this. | |
Re: Write down your requirements first. What data do you need ? How is it organized ? | |
I am looking for some experiences with embedding video's in my website. Until now I had only externally linked video's (which included their own players). Now I have to embed my own. So far I've seen HTML5, Flow player, JW Player and VideoJS. Any recommendations ? Added: Also found [URL="http://praegnanz.de/html5video/"]this … | |
Re: As far as I can tell from the W3C spec, the FileReader functions are asynchronous. That means that the alert() happens before the file is done loading. | |
Re: Can you please clarify ? Preferably with an example. | |
Re: Is it complaining about your include files ? The current folder is probably different, then when called from the browser. Try issuing a [iCODE]chdir()[/iCODE] before including your files, or use absolute paths in your includes. | |
Re: Can you give an example of your table and the data that is in it, and an example of the output you require ? | |
Re: What exactly do you want grep'd ? | |
Re: IIRC the default password is blank (no password), so just hit enter. | |
Re: If you want to make interception more difficult, use an SSL connection. Then it will at least be sent encrypted. Or let those doctors e-mail it to you directly, without using the webpage. | |
Re: Have you tried including the full path to the executable ? | |
Re: The stored proc cannot determine that the output returns only one row. You can try adding [iCODE]LIMIT 1[/iCODE] to your subquery. | |
Re: You cannot avoid that by setting file permissions. IMO, you need something like a password protected folder to store them in. |
The End.