8,966 Posted Topics
Re: Which server-side scripting language are you using? | |
Re: Are you talking about tools like IonCube? They are not meant to be decrypted. | |
Re: Did you make changes to the PHP.INI? What mail server do you want to use? ![]() | |
Re: Try: SELECT * FROM `arc_news` WHERE `status` = 'aktif' AND `date` BETWEEN DATE_ADD(NOW(), INTERVAL -14 DAY)) AND NOW() ORDER BY `counter` DESC LIMIT 4 | |
Re: > I don't know how to do it for these tables Just insert them in the right order. > P_ID = 1 and CUST_ID =1 is this possible ? Yes. | |
Re: Opens fine here, although I'm not sure what he wants. | |
Re: Try: SELECT A.Id, A.Title, COUNT(*) AS CommentCount FROM Article A, Comment C WHERE C.Id_News = A.Id GROUP BY A.Id ORDER BY CommentCount DESC | |
Re: [Here](http://www.databaseanswers.org/data_models/) are some data models for reference, to help you get started. | |
Re: > So in your opinion it's just a more convenient form of BackgroundWorker? Yes. It creates and handles the threading and callback for you. At least, that was how it was shown and explained by MS. If you look at the IL, you should see an old fashioned thread solution. … | |
Re: Is there some Javascript code that does this? | |
Re: You'll need to be a little more specific about what you need help with. | |
Re: - Keeping in touch. Hiring someone you only know via email is impossible to track when he decides to no longer respond. - Language. If your freelancer is from another country communicating may be difficult in both text and speech. - You need to find someone who understands what you … | |
Re: It's the highest id or zero, then plus one. | |
Re: Without your script it's impossible to determine what the cause is. | |
Re: CSS inclusion above is correct. `<script>` is for Javascript. | |
Re: Line 25. You cannot have the `+` after `description` | |
Re: ErrorDocument 404 /error/error404.php I think you should remove the slash ErrorDocument 404 error/error404.php or specify the full path ErrorDocument 404 /var/www/error/error404.php | |
Re: > tables are not related at all If there is no relation at all, how do you know which logo you need? | |
Re: I'd use a linked table so you can use an id, but also show the string. | |
Re: http://blog.nimbo.com/running-classic-asp-pages-in-windows-azure/ | |
Re: Do: $query = "SELECT * from pr where date between '$to' and '$from' "; $result3 = mysql_query($query) or die(mysql_error() . '<br/>' . $query); and paste the message here. I assume your date format is not correct. ![]() | |
Re: Have you tried with `DAY()`, `MONTH()` and `YEAR()` ? What server are you using? | |
Re: http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html | |
Re: > how to calculate total number of possible combinations? (49^6) = 49 * 49 * 49 * 49 * 49 * 49 = 13.841.287.201 > How to create all possible combinations? Simplest with 6 nested for loops, but that won't work. It will cause a stack overflow. Recursion will probably … ![]() | |
Re: I wonder how you are going to get your tutorials. You requirements are quite complete, am just afraid you are going to have trouble getting content. | |
Re: Closed. Continue [here](http://www.daniweb.com/web-development/php/threads/467998/apache-xampp-virtual-hosts-not-seen-by-client). | |
Re: SELECT SUM(IF(A.ExpirationDate < NOW(), 1, 0)) If the expiration date of the record is before today add 1, else add 0. | |
Re: Have a look at [this thread](http://www.daniweb.com/web-development/php/threads/467708/how-to-create-number-set-within-range). | |
Re: In the PHP.INI is a setting short_open_tag. If you enable that, it'll work. | |
Re: Perhaps [this article](http://www.troywolf.com/articles/php/exchange_webdav_examples.php) may help. | |
Re: public function_construct() { Should be: public function __construct() { | |
Re: Use Linq: myList.OrderBy(item => item.Column); Or am I missing something? | |
Re: https://developer.paypal.com/docs/ | |
Re: After: $fothers = mysql_query($fothersq); There should be: $row = mysql_fetch_array($fothers); and then use `$row` instead of `$fothers` | |
Re: Use a database to store your sessions, and have both servers access it. | |
Re: Ugh, what a nervous homepage. Can't you just deconstruct that webpage? As for the video, low low-res is probably the key. | |
Re: I use it too. I like the way bangs work and the fact that you don't have to click "next page", but just scroll down. ![]() | |
| |
Re: I moved this here, so others can decide whether or not this was too harsh. The fact that it is for educational purposes does not mean the rule against such question should be ignored imo. Whether or not your intentions are good, does not mean others won't abuse such information. … |
The End.