8,966 Posted Topics
Re: Have you tried `parse_url` ? You can explode again on the comma if you like, but not on both at once. | |
Re: I have noticed this on IE10, while editing HJT logs over wifi. Other than that, no consistent reproducable example (yet). | |
Re: Try to explain what you want in more detail please, your question is vague. | |
Re: Am not sure what Avaya is, but wouldn't you be better off asking this question in their support forum (assuming they have one)? | |
Re: Ahum... header goes first, otherwise "Cannot modify header...". | |
Re: PHP? Did you post your question in the wrong forum? | |
Re: "Driver" points to the installed windows driver needed to access the MSAccess database. Most likely this is already installed if you are running on a Windows machine. `$dbName` is a variable that should contain the name of the database you are trying to open. | |
Re: You may want to explain what you are doing (some code too perhaps) more clearly. | |
Re: If you want a server on your local machine, then you'll have to install it, there is no shortcut for that. Just make sure to check the license and terms of service, because it wasn't allowed for a while to include the MySQL server setup in a custom setup project … | |
Re: > I want to designe a code What language(s) will you be using? | |
Re: > ('ONT', '5.43' '2013-01-03') If you specify where these values are defined (or coming from), then you can just build your query and execute it. I can only see `ONT` because it is used in the URL you call. | |
Re: Are you sure there is one? Have you contacted Oracle support? | |
Re: The code you need is posted right above. | |
Just received [this article](http://www.businessinsider.com/people-think-stormy-weather-affects-cloud-computing-2012-8), several months old, but a pretty funny read. | |
Re: Text file is possible, although I would encrypt it. For what reason do you not want to use MySQL? | |
Re: This indicates an error in your query. Do this: $result = mysql_query($sql) or die(mysql_error()); and show the error here. | |
Re: I know there is a post/code snippet about this, but I cannot find it. Anyway, you need to [serialize](http://api.jquery.com/serialize/) your form, and pass it as `data` to your PHP script. | |
Re: You can pass the `where` clause as a parameter to your stored procedure, but that means you'll need to build your query as a string, and use `sp_executesql` to execute it. | |
Re: [dirList](http://sourceforge.net/projects/dir-list/) is an Open Source one. Download and learn. | |
Re: Use a UNION. First select your premiums, second the featured randomized. | |
Re: Care to share your solution to help others? | |
Re: It's a choice. It will make it easier to create reusable blocks of code. Another advantage is that, when used properly, it will be easier to read and manage your code. | |
Re: The thread I posted with the Js plugin in Geek's Lounge earlier today was moved by Dani to the Js forum. After it was moved it was +repped by EvolutionFallen. His profile shows +5, but in my Post Comment tab it shows 0. Perhaps this is related. | |
Re: How about [VideoJs](http://videojs.com/)? As for JWPlayer, the free version has branding so you'll have to pay to get rid of it. | |
Re: Assuming MySQL, see the docs [here](https://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html#operator_between). `BETWEEN` requires a minimum and maximum value, and does not support a wildcard like `LIKE` does. | |
Re: If you get `0000-00-00` it means it was either not set, or invalid. You'll have to make sure the format is `'yyyy-mm-dd'` | |
Re: XML is basically a data transfer format. An RSS feed is an XML file. | |
Re: I assume you are looking for this: [mysql_insert_id](http://php.net/manual/en/function.mysql-insert-id.php) | |
Re: Dollar sign is missing: $mail = $smtp->send($email_to, $headers, $email_message); | |
Re: You are trying to `Open` a connection that is already open (most likely). We can help if you show the relevant part of your code. | |
Re: I have created a plugin a long time ago to do just that. Perhaps it's a good starting point. A demo is [here](http://www.pritaeas.net/public/jquery/hp/highlight/live-demo.html), the plugin itself (hp-highlight) is also on [GitHub](https://github.com/pritaeas/hp-jquery/tree/master/plugins). Feel free to use/change it at will. If you have interesting changes please let me know, or do a … | |
Re: You will need to send that value to a PHP script via an AJAX call. | |
Re: There's `imageloadfont` and `imagepsloadfont`, it's not as simple as providing the font name. The anchor should be added in the HTML where you've also added this file in an `img` tag. | |
Re: What exactly are you looking for? Which CMSes have you tried, but rejected? | |
I have a project that contains regular resources in `Properties\Resources.resx`. Next to that, I have a folder named `Scripts` containing files, marked as "Embedded Resource". When I do: var resourceNames = Assembly.GetExecutingAssembly().GetManifestResourceNames(); I get a list of resources, containing both. What I would like to have is a list of … | |
Re: The problem is probably that your values may contain an empty string, instead of a null value. | |
Re: To get the local storage variable to PHP you'll have to use an AJAX call. Whether you use a GET or POST is up to you. Personally, I'd choose a POST. | |
Re: [This site](http://www.sql-server-performance.com/) also offers information. | |
Re: Is the Access and MySQL database on the same server? | |
Re: Perhaps the casting to a decimal fails because you are not rounding first. Does this fail too? select [dbo].[funcFormatPercentages_Extended_numeric]('36.4') | |
Re: http://aspnet.4guysfromrolla.com/articles/081303-1.aspx | |
Re: http://php.net/manual/en/datetime.diff.php | |
Re: You'll need to store the latest used number somewhere, so you can retrieve it and use it when uploading the next file. | |
Re: Port 1024 is blocked on the target machine (or by the router, or the firewall). | |
Re: > props.put("mail.smtp.port", "465"); Are you sure it's not 587? I thought 465 was for SSL. | |
Re: Have you tried adding a space after the colon? If that does not work either, try a fully qualified URL. | |
Re: Are you sure your upload script was the way the script got onto your server in the first place? | |
Re: http://www.daniweb.com/community-center/geeks-lounge/threads/194321/daniwebs-irc-channel See the link from John A. |
The End.