8,966 Posted Topics
Re: If you are using a regex, then the question mark is a special character, escape it with a backslash. | |
Re: Looks like an error occurred. Did you use `mysql_select_db` ? | |
Re: > You need to organize the data in your PHP code after you fetch it Not necessarily. If the query is grouped on continent and continent_region, then you can use `GROUP_CONCAT` to concatenate the states. ![]() | |
Re: Try a UNION merging the top 10 rows with the rest. | |
Re: Have a look at the logfiles. maybe you can find the reason in there. If wamp is unable to start one of the services, it will appear hanging. | |
Re: No matter what I enter, I get: `syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING` so I'd say it's secure enough... ;) | |
Re: That means you are trying to insert more data into a column than it can hold. Check your input against the column size. SQL Server does not truncate, but raises an exception. | |
Re: > if I leave link and link trext blank I get errors. What errors? Apart from that, your construct with three nested foreach loops is weird. You know you have 8 fields, why not use a single for loop? | |
Re: http://www.mono-project.com/ASP.NET | |
Re: Another reason was that I was about the only one who was actually using the feature at all. | |
Re: It's called AJAX. Check out [this code snippet](http://www.daniweb.com/web-development/php/code/437655/getting-products-details-from-categories-subcategories-with-ajax-call-). ![]() | |
Re: Perhaps some JOIN can do that. If you use GROUP_CONCAT on both fields in table 2 it may be possible. I'll need to know more about the table structures. How are both tables linked? Only by the comma separated column? Another option is to build a specific REPLACE. | |
Re: You'll need to select one of the prod_id in your query. You can't use it if it's not in the result. | |
Re: If your code starts with a character, it is considered a string and needs single quotes around it. | |
Re: My guess is your `ajex_sent1.php` fails. Are you sure passing `sad` for `catalog_no` is valid? | |
Re: Just a tip: your regex does not work on TLD's larger than three characters (.info, .museum) ![]() | |
Re: Regex 1 checks for any number of a's followed by a c. Regex 2 does the same, but expects the a to start at the beginning of the line, which won't match any substring. | |
Re: What line do you get the error? | |
Re: Looks like this is returning objects. Where did you get this? ![]() | |
Re: Can you show an example of what you want to build? | |
Re: > When i echo it i get nothing and no email is received. Your `do .. while` loop continues until it returns `false`. So, after the loop the `$row_Recordset1` contains `false`, and no longer an array with columns and values. | |
![]() | Re: Much more readable IMO, but the photo strip I don't get either. ![]() |
Re: Not sure about best practice, but I put them together so the browser only needs to load a single file. | |
Re: Not sure about all runtimes, but I think most are updated through Windows updates. | |
Re: > From what I've read creating a connection within a class is bad? Not necessarily. I would just pass a MySQLi or PDO object as a parameter to the class' constructor, and store it in a private variable. | |
Re: > this is not working What is not working? What did you expect? What was the outcome? | |
Re: The brute force way is to create all strings from all combinations of your array, and test them against the larger word. ![]() | |
Re: Try: $node = $item->xpath('//Characteristic'); if ($node->CharacteristicName == 'Tilt') echo $node->CharacteristicValue; | |
Re: We can only help if you show more information, code, error messages, etc. | |
Re: You may want to be a little more specific. What do you expect? What is happening? What is the problem? ![]() | |
Re: Something like [Balsamiq mockups](http://www.balsamiq.com/products/mockups) for example. | |
Re: http://www.w3.org/html/wg/drafts/html/master/ | |
Re: > i don't know how we can install http://codex.wordpress.org/Installing_WordPress | |
Re: From what I've read, it can only run on .NET 2.0 with a hack. LINQBridge could be helpful, but am not sure if that's what you want. | |
Re: > give me some codes that used in php Language What exactly are you looking for? | |
Re: http://css-tricks.com/snippets/css/text-rotation/ | |
Re: If you execute this query in phpMyAdmin, do you get an error? I think it should be: INTERVAL 1 MINUTES | |
Re: > it is possible that one column in a row has a data Can you explain what you mean? | |
## Before You Ask ## - Engage your brain! We understand that running into a problem can turn off the rational centers of the brain, but please sit back and think for a bit about your problem before running off to find help. All too often a little common sense … |
The End.