8,966 Posted Topics
Re: If safe_mode is enabled and you cannot disable it, then you might not get this to work. Fortunately, other people have had similar issues, so you can try [this workaround](http://www.edmondscommerce.co.uk/curl/php-curl-curlopt_followlocation-and-open_basedir-or-safe-mode/). | |
Re: > I ran the query in the database and it returned a COUNT value of 0, the odd part is that when I remove the password section the COUNT returns 1. Sounds like you inserted the record with a different password, or a different hash. The code you have looks … | |
Re: What code are you using? [This thread](http://forums.asp.net/t/1286660.aspx/1) has some info. | |
Re: > Insert into Customer Detail Does it really have a space? You forgot to ask your question. | |
Re: What exactly do you need help with? What do you have so far? | |
Re: [This thread](http://www.daniweb.com/web-development/php/threads/430854/dropdown-search-from-mysql-database-help) may help. | |
Re: Have not seen this behaviour before. Unfortunately, I cannot try your case, as I do not have D7, nor a Win7 PC without Delphi installed. Are you sure that you do not have code somewhere that disables it by accident (can you show some maybe)? | |
Re: Amazon has one called [Mechanical Turk](https://www.mturk.com/mturk/). | |
Re: Perhaps some info in [this thread](http://www.daniweb.com/web-development/php/threads/427045/php-printer-function-not-working-) can help. | |
Re: You want to highlight words on the current page? I've written a [jQuery plugin](http://www.pritaeas.net/public/jquery/hp/highlight/index.html) once that does that. | |
Re: If there are FK's enforced, then you have to make sure you first delete all child records, before you can delete the product. | |
Re: http://peterned.home.xs4all.nl/blog/sortrows.html This is an example showing you how to do it with table rows. | |
Re: You'll need to be a little more specific: what are they saying, and what don't you understand. | |
Re: Try their website. Actually, Wordpress is a CMS, not a PHP framework. | |
![]() | Re: PEAR is very nice to work with, you just have to make sure you use recent packages. Some of them haven't been updated in quite a while. It's best to avoid those. ![]() |
Re: How do you output to the browser? Did you specify a character encoding? | |
Re: So what is the problem? You said something was wrong, but did not specify. | |
Re: Just change line 12 to: $("txtHint").text('... some content ...'); | |
Re: > How to get harddisk serial number and motherboard serial number using php?. On your server perhaps with an `exec` call to some linux function (if you set priviliges correctly). On the client, not possible. | |
Re: If you mean using the function `multi_query`, then you need to switch to the `mysqli` extension. | |
Re: > How can I ensure that multiple members making the same choice at the same time don't end up receiving the exact same result, and ultimately try to acquire that position at the same time? If your field is the PK, inserting the same id will fail. Then you can … | |
Re: > Directory Listing Denied Means you cannot get a directory list of the root folder. Uploading a page has nothing to do with this. Once index.html has been uploaded (ftp), you should be able to reach it. | |
Re: > How to bookmark website automatically without asking user/visitor of website in all browsers? This will annoy a lot of users... Anyway, why don't you just call: `$("#bookmarkme").click();` | |
Re: You mean you typed into an editor on a webpage, and then refreshed the page? I don't think you can, perhaps with a browser plugin. | |
| |
Re: Would you share your solution, so it may help others in the future? | |
Re: I suggest you install WAMP or XAMPP on your machine and start trying stuff first (PHP is backend/server-side too). Is this for an intranet, or does it have to be accessible anywhere? | |
Re: Try this and tell us if you get an error: $set = mysql_query($get) or die(mysql_error()); | |
Re: http://www.calvert.ch/maurice/2012/01/13/convert-excel-to-html-with-formatting/ | |
Re: 1. Show your code. 2. This is cached by your browser. You can try [this](http://www.badpenguin.org/php-howto-control-page-caching) but it may not always work. | |
Re: Yes, it's doable. What do you have so far? What do you need help with? | |
| |
![]() | Re: A singleton is a class which provides you with one, and only one, instance of that class. The scope resolution operator is an operator that allows you access to constants and static methods of a class. You can compare it to `->` which you use to access instance variables and … |
Re: http://www.zebra.com/gb/en/products-services/software/developer-tools.html?mm | |
Re: Some views allow updating, but I think it depends on whether it can be traced back to the actual records. | |
Re: This should work: <div id="featured"> <ul class="ui-tabs-nav"> <?php $i = 0; foreach($posts as $post): ?> <?php $i++; ?> <li class="ui-tabs-nav-item ui-tabs-selected" id="nav-fragment-<?php echo $i; ?>"> <a href="#"> <span> <?php echo $this->escape($post['title']) ?> <?php if($leads): ?> <p><?php echo $this->maxText($post['content'], 50, '...', true) ?></p> <?php endif ?> </span> <img class="post-image" src="<?php echo … | |
Re: You will need to show what you have. Paste the relevant pieces of code, or the url if you have this online somewhere. | |
Re: You would need to use AJAX to retrieve the new values for the dropdown. Basically, turn this PHP code into a file of it's own, and pass the values that are selected to build your query condition. | |
Re: Perhaps you are just a little impatient, or nobody knows the answer. Since you found an answer, are you willing to share? | |
Re: It is just an XML CDATA block. Load this file into SimpleXML/DOMDocument, and you can do with it what you want. | |
Re: Line 32 is missing a single quote after `$state`. |
The End.