8,966 Posted Topics
Re: You have to use a Javascript (or jQuery) AJAX to call a PHP script to perform a MySQL insert. | |
Re: > What i need this to do is delete what is inside the div eliment already before it writes the the div again. What is the before and after situation? | |
Re: > Trying to get property of non-object in C:\wamp\www\db\viewdb.php on line 31 That means that `$result` is `false` because your query failed. | |
Re: Do you mean something like [this](http://www.jqueryscript.net/menu/Bootstrap-Style-Vertical-Accordion-Menu-with-jQuery-CSS3-bs-leftnavi.html)? It's a vertical accordion menu. Lots of stuff to find about them. | |
Re: > give me error the process cannot access the file it using by another process file Are you perhaps viewing the folder your file is in with the Windows Explorer? | |
I want to design a fluid two-column form with BootStrap. What is the best way to tackle this? Do I start with a fluid container and two columns, and then fit a vertical form in each of them? Or is there a better alternative? | |
Re: You can just reference the databases in your query. SELECT * FROM database1.table1 UNION SELECT * FROM database2.table1 | |
Re: > does it make more sense to use INSERT and let the MySQL error out as opposed to using INSERT IGNORE? I've used this once in the past on a separate DB, so I had the option to turn error logging off. Is hard to time, but log writes are … | |
| |
Re: Agreed. Some prefer the first to have more visible lines within a single screen. Code styles are like religion, they'll trigger holy wars. | |
Re: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures | |
Re: It's not as simple as flicking a switch. Even in Delphi 7 there were component packs you could use, with theming. If you are not using anything like that now, it's not easily replaced. | |
I have the following method: [ClaimsPrincipalPermission(SecurityAction.Demand, Resource = "Order", Operation = "Place")] public string PlaceNewOrder() { } When the `AuthorizationContext.Principal` does not have the required `Claims`, a [SecurityException](http://msdn.microsoft.com/en-us/library/system.security.securityexception_properties(v=vs.110).aspx) is thrown (as expected). Unfortunately, all the properties of this exception (such as `Action` or `Demanded`) are `null`. Is there a way … | |
Re: Search this forum and you'll find plenty of threads on the subject. | |
I just submitted a thread, and after clicking submit I got to a blank page. Fortunately, the thread had been submitted correctly. Using Opera. -- This one submitted as usual. | |
Re: > Cannot pass parameter 4 by reference It expects a variable, so you cannot pass the string `'breakfast'` directly. So, either put it in the query (as it's not really a parameter), or put it in a variable. | |
Re: $returnedDate = getDate(1); echo $returnedDate['date']; Not even sure why you are returning an array, since you are querying just a single value. | |
Re: TLDR. More explanation required. | |
Re: From the error I assume you need to define your WaitWindow in XAML. | |
Re: > It feels pretty inefficient to me to take apart these processes and let my Javascript execute an AJAX request to retrieve the settings That's the normal flow of things. RequireJS is used to load Javascript modules. There's no way to include PHP on the client-side, or to let Javascript … | |
Re: Reverse engineering is illegal in most cases, if that's what you are referring to. | |
Re: http://www.mathjax.org | |
Re: > This code is working in my local but it's not working in hosting server. Do you perhaps have to whitelist the server you are sending from? | |
Re: Are you using different browsers to test this? Because if you login as both users in a different tab in the same browser then it is recognized as the same session. | |
Re: MSDN on [ASP.NET User Controls](http://msdn.microsoft.com/en-us/library/y6wb1a0e(v=vs.100).aspx) | |
Re: > Am I heading in the completely wrong direction? If both pages share code, IMO the best option would be to create a class that does the actual work. You can then use that class in both pages. An other option would be to create a base page (parent page … | |
Re: I can recommend [HighSlide](http://highslide.com) | |
Re: Line 166 needs a query result as parameter. What count do you need? | |
Re: You're the "and 1 other", because the first three are shown in alphabetical order. | |
Re: > Topics I have got are DoS, BruteForce, Viruses and others, Phishing, Hacker At Work Please use the right phrase then, use "Cracking". [Hacking](http://www.catb.org/jargon/html/H/hacker.html) is not the term for breaking stuff, the media turned it's real meaning. | |
Re: Shouldn't `ACTIVE` be surrounded by single quotes? Another issue might be the lack of a space before the `WHERE` | |
Re: > However the file is not correctly downloading as an image Can you confirm that the size of `$data` matches the file size of the original image? I think it also contains header information of the response. What exactly are you writing to the file? There's no `fwrite` in the … | |
Re: You should really explain what you are trying to do, and what specifically isn't working. Dumping code won't get you any help. | |
Re: > If there is anything you see that you think I should change or shorten please let me know. In your HTML, remove the `<span style="">` and put the CSS where it belongs, in the CSS file. Uses `class` and or `id`. In some cases the span isn't needed at … | |
Re: Use the flag icon to the top right of your post to get a moderator's attention. Just state what you want done with the post. Note that deletion requests will only be honoured if it's a duplicate or it violates our rules. You can edit your post for 30 minutes, … |
The End.