8,966 Posted Topics
Re: Start with [this](http://www.daniweb.com/web-development/php/code/301728/complex-random-password-generator) and make adjustments where needed. | |
Re: preg_match('/(\d{3}-\d{3}-\d{4}|\d{5})(.*)/s', $subject) But this is flawed. Can't you just take the last line? | |
Re: You cannot access any properties after you have `unset` your object. | |
Re: *She came to me one morning, one lonely Sunday morning Her long hair flowing in the mid-winter wind* Uriah Heep - Lady in Black | |
Re: Not sure if the language supports it, but can't you use regions? | |
Re: You want this? SELECT * FROM mytable ORDER BY TDate, transactionid | |
![]() | |
Re: > Would it be worth refreshing the images to a clean and modern look to encorage members to display their badge? Good idea, have the badge match the new layout again. | |
See attached image. If I hover over the last reply link, then the link shows as post/jump/0. Opening the thread, doesn't show a reply. Also, I see two questions "member badges" in this forum by mattster, but I can only open one, the other opens the OOPS page.  | |
Re: Is `OverTime` a varchar column? If so, you need to cast it to a type that can be summed. | |
Re: Possible, yes. My flow would use AJAX most likely. You can use it to trigger the search, and a second to keep fetching results. In the background you can run a script that would store it's results in a database. The second AJAX call would call a script to query … | |
Re: If you "publish solution" from VS, you get a folder with all files required. You need to upload them all. | |
Re: You'll need to be a little more specific about what you are trying to achieve. | |
Re: > Please help :) With what exactly? | |
Re: CodeIgniter, Cake, Zend, Symphony, Laravel. Check this forum, there are some discussion on this topic. Search for framework. | |
Re: http://php.net/manual/en/book.oci8.php | |
Re: > Ok first thing's first don't use else else in php and in other programming languages there is no double else. I think you missed a bracket ;) His construct is valid, although hard to read because of the lack of indentation. | |
Re: You can't. Editing your post is allowed for 30 minutes. Deleting isn't allowed at all, unless the post violates one of our forum rules. Minor edits can be requested by using "Flag Bad Post" to request a moderator's attention. | |
Re: Welcome to DaniWeb. > i am looking to advertise my website Be sure to read [our rules](http://www.daniweb.com/community/rules) first, so you'll know where to advertise, and more importantly, where not. | |
Re: Missing return on line 9. Next time start a new discussion thread, instead of replying to an existing one. | |
| |
Re: Remove: where mg.GenCode='Action' or mg.GenCode='Adven' Add: having find_in_set('Action', group_concat(DISTINCT g.GenCode)) and find_in_set('Adven', group_concat(DISTINCT g.GenCode)) This will get you started I think. Not sure if it's correct since you didn't show your table structures/data. Some tweaking may be necessary. | |
Re: Closed. Continue [here](http://www.daniweb.com/business-exchange/jobs-and-resumes/jobs/472406/asp.net-or-vb.net-developer) | |
Re: An RSS feed is nothing more than an XML file. What exactly is the problem you're having? You can retrieve the data as usual, and then create a feed by applying a template. | |
Re: Session start should be before **ANY** output, so before the `<!doctype>` tag. | |
Re: > does there exist any way to find out what query is made to the database It is logged in the mysql query log, **IF** it has been enabled. | |
Re: http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.double A backslash in a double quoted string must be escaped. | |
Re: Check if that file exists in that location. | |
Re: I also see 0 in the C# forum list. Looks like it was deleted twice, thus affecting the reply count :D | |
Re: $data = "i love funny movies \n i like daniweb dot com \n i like rock song"; $data = explode("\n", $data); $data2 = array (); foreach ($data as $item) { $data2[] = explode(" ", $item); } print_r($data2); | |
| |
Re: http://net.tutsplus.com/tutorials/javascript-ajax/using-node-js-and-websockets-to-build-a-chat-service/ | |
Re: Has your table perhaps been created with a default value for your date column? | |
Re: > I did at lines 28-34 Only if there is a row returned. If no records are returned from your query, your variables are undefined. | |
Re: They're not in the right order: ps=con.prepareStatement("update employees set EmployeeName=?, Nationality=? where Employee_id=?"); ps.setString(1, EmployeeName); ps.setString(2, Nationality); ps.setInt(3, Employee_id); | |
Re: > Who wrote the first C compiler and how got it compiled? [Here](http://cm.bell-labs.com/cm/cs/who/dmr/primevalC.html)'s some history. | |
Re: <input type="text" name="donum" value=" <?php echo $b; ?> " /> The above adds unnecessary spaces to your input. Try: <input type="text" name="donum" value="<?php echo $b; ?>" /> | |
Re: A theme is usually nothing more than a folder containing a stylesheet with additional resources, such as icons. What you need to store is the name of the theme's folder, and use that to add that stylesheet to your pages. | |
Re: What kind of API do you want to build? A good tool to help you build a REST API is [Restler](http://luracast.com/products/restler). | |
The End.