8,966 Posted Topics
Re: > first off this is a question where jQuery is used heavly, there are no catagories to put that under on <DaniWeb> jQuery IS Javascript. | |
Re: > I would like to directly open the files (only for *.exe file), how to create the program like that? You cannot. This is blocked by the browser. | |
Re: This is encrypted by something like IonCube. Asking for decrypting it is against our rules. Thread closed. | |
Re: IMO "expected behaviour" is opening in the same window. | |
Re: Why did you remove the main forum menu? My mobile screen is HD so wide enough, yet now i can no longer navigate. | |
Re: Upload size restriction perhaps. Check your php.ini | |
Re: Sure, why not? Looking for anything specific? | |
Re: > I want to find ways to increase my logic and problem solving skills so I can become better at programming. There are a lot of code golf websites, providing problems (and solutions). That might be a start. | |
Re: http://www.inmotionhosting.com/support/website/backup-and-restore/backup-your-database-in-cpanel | |
Re: $target ="/uploads/$_FILES["img"]["tmp_name"]; // line 15 should be: $target = "/uploads/" . $_FILES["img"]["tmp_name"]; and on line 17 `$target_path` should be `$target` I think. | |
Re: Are you positive you have data that matches? Can you show some sample data? | |
Re: The variable `$checked` is not defined when there are no results, so I suggest to move line 10 to between line 4 and 5, and replace `null` with `''` (empty string). | |
| |
Re: I got to this: ^[a-zA-Z0-9](?:[a-zA-Z0-9]|[ ](?=[^ ]*$)){0,8}[a-zA-Z0-9]$ ![]() | |
Re: Please do not bump your thread. What exactly is the issue? Have you tried setting a margin? Putting your code in a jsfiddle would be helpful. | |
Re: Not enough information. Could be just some settings. | |
Re: http://www.oracle.com/partners/en/partner-with-oracle/training/index.html | |
Re: Care to share what solved it? | |
Re: http://msdn.microsoft.com/en-us/library/ms144259.aspx According to the documentation a boolean type expects 0 or 1. | |
Re: You might want to read this: http://www.daniweb.com/community-center/daniweb-community-feedback/threads/450045/downvotes | |
Re: What are the table structures, and what have you tried? | |
Re: Have a look at the `<noscript>` HTML tag. | |
Re: class Custom { public int EmployeeId { get; set; } public int Index { get; set; } } List<Custom> data = new List<Custom>() { new Custom() { EmployeeId = 1, Index = 1 }, new Custom() { EmployeeId = 1, Index = 2 }, new Custom() { EmployeeId = 1, … | |
Re: You mean something like [Balsamiq](http://balsamiq.com/products/mockups/)? | |
Re: > Where is your code, and what error you get while running your script? In addition to this (you still haven't answered), what exactly is your setup? | |
Re: You are outputting a CSV file. You can only do formatting if you create an actual Excel file. You can do this for example with [PHPExcel](https://phpexcel.codeplex.com). | |
Re: If you have ffmpeg installed you can just use [exec](http://php.net/manual/en/function.exec.php). | |
Re: That is because you are storing the poNo as a string. Try this: SELECT * FROM po ORDER BY CAST(poNo AS INTEGER) ASC | |
Re: > Pulled the gun too quickly, eh? Indeed. I saw the post on the homepage, so without context, hehe. So hammered it away. Kinda funny IMO. | |
Re: Which line in the above mess is line 113 in your code? | |
Re: http://sourceforge.net/projects/nusoap/ https://github.com/Luracast/Restler | |
Re: The link you showed, turns PDF into Flash. Not sure how you would do that in PHP. | |
Re: Have a look at [NetworkInterface.GetAllNetworkInterfaces](http://msdn.microsoft.com/en-us/library/system.net.networkinformation.networkinterface.getallnetworkinterfaces(v=vs.110).aspx) | |
Re: > it's not taught in schools That's where I got taught. 1. Practice, practice, practice. 2. In school we were taught flowcharts, DFD's, waterfall development, UML, etc. These all help you look at a problem from different angles. Although I hardly use any of them, they all influence how you … | |
Re: Wouldn't it be more accurate if you sort descending (or loop in reverse order), so the largest items come first? Remove lines 13 and 14, they are adding duplicates. | |
Re: All you really need is here: http://msdn.microsoft.com/en-us/library/6a71f45d.aspx You may cause some confusion with the double assignment in your second example. |
The End.