8,966 Posted Topics
| |
Re: If you can't use a regex, loop each character in the string. | |
Re: http://msdn.microsoft.com/en-us/library/ms187331.aspx "up to a maximum of 24 hours" | |
Re: Try casting you revision_no to a decimal: order by cast(revision_no as decimal) | |
Re: > This code assumes (as you've written), that the class you're identifying is last in the class list Be careful with such an assumption. As soon as you add/have code changing classes, this may no longer be valid and can lead to strange results. | |
Re: If you have an ODBC connection to Oracle, you should be able to connect. | |
Re: It depends on what you already know, and what you want to build. So, what's your background? | |
Re: Nope, still not understanding why my hello world isn't working... I think I'm unlearning. | |
Re: > i get sometimes talks of Port 80 and one other Port already in use. Most likely because either IIS or Skype is running. | |
Re: I think `$mail_status` should be `$send` (check lines 18 and 21). ![]() | |
Re: `undefined` is Javascript, not PHP. You maybe thinking of `null` but `isset` takes care of that check. What you could do is combine `trim` and `empty`. | |
![]() | |
Re: What exactly are you trying to achive? It's not clear to me. Your code however indicates that you must be overcomplicating things. Can you explain with a simpler example/flow of what the input is and what the output is? | |
Re: A text area cannot hold HTML content (the table), unless you escape it. What are you trying to achieve? | |
Re: INSERT INTO PhoneNumbers (idPerson) SELECT id FROM Persons Will insert any/all ID's from Persons into Phonenumbers. INSERT INTO PhoneNumbers (PhoneNumber) VALUES (@PhoneNumber) This one then adds a new record with just the phonenumber. | |
Re: In the editor's toolbar, click "Files". You should get some "Choose" buttons. If you select a file, it will be automatically uploaded and attached. | |
Re: Different location on another server? Have a look at curl. | |
Re: I really doubt that there are multi-platforms drivers. I haven't seen any although that still doesn't mean there aren't any. Which Delphi are you using? | |
Re: [url]http://james.padolsey.com/javascript/things-you-may-not-know-about-jquery/[/url] The above link shows how you can get to the bound events for all elements, perhaps it can be of use, in combination with the suggestion from stbuchok. Can you explain why you cannot get to the creation code ? Trying to get this working will be really messy. | |
Re: I've experienced this before. Tried several things but ended up reinstalling. | |
Re: Am sure the API provides you with a search function. I have no access to the documentation, so check there. If you already have code and it's not working, post it here. | |
Re: > What programming language I need to learn for that That choice is up to you. Pick a server side language your website supports, and/or you are comfortable with. | |
| |
Re: [MSDN](http://msdn.microsoft.com/en-us/library/windows/desktop/ff818516(v=vs.85).aspx) perhaps? Or something like this [book](http://www.amazon.com/Win32-API-Programming-Visual-Basic/dp/1565926315)? I know it's old but the basics are still the same. Most new books only address .NET | |
Re: > is that a good thing? Yes. > What do I do now? Either start the services, or disable your firewall block. | |
Re: Just posting questions won't get you answers. Show your code, and clearly state the problem you are having. | |
Re: Depends on your requirements. The question is not specific enough to make a choice. | |
Re: > Cloud is EXPENSIVE. That depends very much on what you are using and how you are using it. | |
Re: Sounds like a sub-select. SELECT * FROM Stock WHERE invoiceNumber IN ( SELECT invoiceNumber FROM Stock WHERE stockNumber LIKE 'CC%' ) | |
Re: > was i wrong in publishing the code (software)? No. If you think it's ready and well-tested, you should. > when it is even good to publish a code (software) as a finished product. I've never seen a (completely) finished product. > so as developers what do we do? Create … | |
Re: An integer column has no formatting so the zeroes are useless to it. Is there a reason you need it stored in the database like that? Adding zeroes is just a presentation issue. | |
Re: Make it easy on yourself: Change the call from `fetchAll` in my class to: while ($row = $statement->fetch(PDO::FETCH_ASSOC)) { $result[] = $row; } | |
Re: You can recreate the MessageDlg by using your own (new) form, so you have complete control over it. | |
Re: It defines the link between two tables, 0 or more, or 1 or more. The last one has to have at least 1 matching record. | |
Re: Show your code and state your problem. | |
Re: What do you have so far? | |
![]() | Re: The OOP introduction is in the PHP Tutorial section. That wrapper is a nice start. A shame it hasn't been updated, has potential. |
Re: $(function(){ $("#hotspot_details1").hide(); $("#hotspot1,#closer").on("click", function(){ $("#hotspot_details2").hide(); $("#hotspot_details1").toggle('fast', function() { /* Animation complete.*/ }); }); }); Since this part is the same on all I guess, you could make it generic. Although it would be easier to use the class for that: <img id="1" class="hotspots" src="images/transp.gif" style=""> <img id="2" class="hotspots" src="images/hotspot.gif" style=""> … | |
Re: You just need to run this script on your server. Just replace the database names, with the ones you have. You can execute it on the command line or through phpMyAdmin, or whatever you use normally to do database changes. | |
Re: As to your second question: mysqldump only exports information (hence the "dump" postfix). It was never designed to receive input, that's why it doesn't work. | |
Re: Most websites don't expose the last modified date in a generic way. | |
Re: http://msdn.microsoft.com/en-us/library/cc295300.aspx | |
Re: > Are those server hosting sites secure Define what you mean. Am sure they all provide security (some more than others), but if you install a bad script, than you are to blame, not them. | |
The End.