8,966 Posted Topics
Re: http://www.foliotek.com/devblog/make-table-rows-sortable-using-jquery-ui-sortable/ Any specific reason you are not using the latest jquery? | |
Re: > I tried using the basic quote tags and they don't work and are displayed literal.... Try the new [formatting help](http://www.daniweb.com/community/syntax) link | |
Re: There are tools available to do the import for you. | |
Re: Those headers are added on the mail server, which you do not have access to. So, you can't. | |
Re: Are you opening files outside of the webroot, because that may not have been enabled ? There are some possible solutions online, that require changes in the httpd.conf. What did their support say? | |
Re: > Would this work? Or would it better to have an interface for each of the Numeric, Lexical? Yes, that would work. Although, if you are just implementing the interface for the base class, what's the point? You can just define public methods in the base class, which can then … | |
Re: Perhaps this [thread on SO](http://stackoverflow.com/questions/5941631/compile-save-export-html-as-a-png-image-using-jquery) may help. | |
Re: > better to convert all to mysql Convert a third-party existing .net application to mysql...?? Hardly possible. > you can not use limit in mssql It's called `TOP`. For paging there are other solutions too. | |
The article [here](http://www.daniweb.com/web-development/web-design-html-and-css/news/422247/only-firefox-3.6-is-fully-compatible-with-our-site-says-ebay) I could not upvote, because the comment box (which I don't need in this case) is hovering over the arrows. | |
Re: http://stackoverflow.com/questions/6635536/prevent-codeigniter-session-library-from-sending-set-cookie-header-parameter-if ![]() | |
Re: [Here](http://stackoverflow.com/questions/6271237/detecting-when-user-scrolls-to-bottom-of-div-with-jquery) is how to detect that you scrolled to the bottom. Then you need to change your load to something that reads just a specific amount of images at a time. To do that you'll need to change your `get.php?page=N` to return a "page" at a time. | |
Re: > Something will better than nothing Some generic template will be pointless in most cases. | |
Re: If you want to put raw data in the image tag, you'll have to base64 encode it. You can read about it [here](http://stackoverflow.com/questions/5984433/is-it-more-efficient-to-put-raw-image-data-in-the-src-attr). Whether it is a good idea, I don't know. I usually link to a script that outputs the image. | |
Re: I doubt modulus is intended to be used with floating point. Your value gets cast to an int, and is therefor zero. | |
Re: This is probably your issue. The column is not named `tran_id` but `MAX(tran_id)` but you can give it an alias with `AS` like this: $sqlmax="SELECT MAX(tran_id) AS max_tran_id, reqid FROM transaction AS last_id WHERE reqid='$reqid'"; //... $max=$rowmax['max_tran_id']; | |
Re: Can you please add a before and after example to this. preg needs a start and end character around the regex, but I'm not sure if that is enough. You can try this: $newString = preg_replace("%[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]%","<a href=\"\\0\" target=\"_blank\">\\0</a>", $originalString); If this doesn't work, please post the requested samples. | |
![]() | |
Re: If you have the handle you can send a message to maximize it, but I do not know of a message to retrieve if a window is maximized. | |
Re: What design do you want to protect ? Can you explain a little more what you are trying to achieve? | |
Re: Hard to guess what's wrong without some code. | |
Re: Yes, you can replace the windows login with something else, but AFAIK it has to be a desktop application. Problem with the webbrowser is that that login code is running on the server, and not on your local machine. It can't interact with the login service of your machine. ![]() | |
Re: Worked for me... thx. | |
Re: What you would have to do is make (for example) a link to `detail.php?id=1` (where 1 will be the ID from the database). In your detail script you can use `$_GET['id']` to query your database for this particular record, and output all details in whatever way you want. | |
Re: http://www.daniweb.com/business-exchange/show-off-your-projects/threads/419589/free-php-chat-script | |
Re: If you try to connect to the smtp server with telnet, do you get a response? | |
Re: What do you have so far, and what are you having problems with ? | |
Re: Because you are using AJAX, you will have to handle the redirect in Javascript, not PHP. So instead of doing the header in PHP, notify Javascript with a particular string (or JSON), to do the redirect for you. | |
Re: Have you tried `margin: auto;` on your outer div? | |
Re: Connect both your old and your new domain name to your new webhost. If you do that you'll be in full control of the redirects. | |
Re: Have a look at my jquery plugin [here](http://www.pritaeas.net/public/jquery/hp/circulate/index.html). I'm sure you can adapt it to your needs (if you want a jquery solution). | |
Re: The result of the first call is the response. Personally, I like the simple introduction given [here](http://www.scottnichol.com/nusoapintro.htm). Perhaps it will help. ![]() | |
Re: 1. Setup a cronjob which runs a script that uses `mail()` 2. Use `mysql_query()` ![]() | |
Re: Opera Dragonfly shows this: > Error thrown at line 3, column 2 in validate(form) in http://www.insiderspetra.com/New/includes/formValidation.js: var name = form.fist_name.value; Fix the typo. | |
Re: > the interpreter keeps telling me that the variable is undefined What line is it referring to ? | |
Re: Not with just required, but the validation API maybe interesting, read more here: 1. http://www.html5rocks.com/en/tutorials/forms/html5forms/ 2. http://www.whatwg.org/specs/web-apps/current-work/multipage/common-input-element-attributes.html#the-required-attribute | |
Re: > found one promising site that provides that service I wonder how they do this. Based on web presence alone, there is no fail proof way to check it. ![]() | |
![]() | Re: @ardav, what thread is that, so I can check. ![]() |
Re: You can try to use a GeoLocation script, [here](http://www.daniweb.com/web-development/php/threads/77998/php-converting-ip-to-country) is a start. | |
Re: Just yesterday I came across [Restler](http://luracast.com/products/restler/). Haven't had time yet to try it myself, but it looks very promising. | |
Re: > I can't seem to copy-paste text in the text area on Chrome. Pressing CTRL + V just positions the cursor at the start of the text area. Same for Opera. | |
Re: > to remove them i have to click on each one individually to delete them You can double click to select multiple. Only the yellow highlighting line is a little hard to spot. | |
Re: preg_match_all('/(<span style="text-align:justify;">)(.*?)(<A HREF="">)/i', $subject, $result, PREG_PATTERN_ORDER); | |
| |
Re: You also renamed the function `jMyCarousel2()`, but it does not exist. Change it back to: $(".jMyCarousel2").jMyCarousel({ | |
Re: Try setting the correct JSON `header()` for your output, or try `$.get` instead. | |
Re: I think getJSON checks if the PHP script has the correct JSON header, which you did not set. | |
Re: I used this in js: "(?!<[^>]*?)" + myWord + "(?!([^<]*?>))" to avoid highlighting in attributes. It looks if it is within tags, nothing more. Seems to work the same in PHP. Sorry to post this here, but I can no longer CTRL+V to paste in Opera. | |
Re: `mysql_connect` returns a resource or false, not an object, so you cannot use the `query` function like that. Looks like you wanted to use `mysqli` to me. | |
Re: You need something between your queries, and the output on your webpage. It doesn't have to be PHP, but you do need some scripting. I'm sure there are tools available to make this easier, but you'd still have to install something. | |
Re: Please give an example of what you have and what you want. It is not clear (to me) what you are asking. Note that HighCharts has excellent support, if you show an example of your problem. |
The End.