-
Began Watching Create New MySQL Connection from MySQL Query Browser
I'm looking more and more about answer for my question. When I open mysql query browser first time, there is place that we can create new mysql connection. I want … -
Replied To a Post in Create New MySQL Connection from MySQL Query Browser
The connection string depends on the driver you're using. Which probably is NET Connector, so it should probably be: Server=192.168.8.101;Port=3306;Database=moneycs;Uid=root; Pwd=mysql; If you are using any other driver to connect … -
Began Watching 2016
Posts | Posters 0 | 15 1-10 | 4 11-20 | 1* 51-60 | 1 61-70 | 1 > 100 | 3 (missing ranges = 0 posters) Apart from the … -
Replied To a Post in 2016
Now a days it's rare to find those posts that fulfill the urge of learning and helping at the same time. Because I'll tell you, the posts I most enjoy … -
Replied To a Post in Migrating to Linux - Any Tips?
@Freshly, thanks, i'll definaltly try Arch someday, but for now Debian is being great for me to get the hang of the linux world =) I did the move! It's … -
Began Watching Find Similar Images using PHP MYSQL
Dear All, I'm developing a php system which contains over 50000 images in a directory. Is there any tools which help me to do a search script to find a … -
Replied To a Post in Find Similar Images using PHP MYSQL
Yeap, there's something already: https://www.pureftpd.org/project/libpuzzle One of it's sampled application it's called "finding duplicate images in photo libraries". -
Began Watching Help upload functions images
Hello, kindly ask your help regarding a function to upload images in two folders, one original image and the "Thumb" folder for thumbnails. Well, I entered the rand code to … -
Replied To a Post in Help upload functions images
Don't know if it's only this, but the uploaded image is at `$target_path.$userpic` and your are creating the thumb only from `$userpic`; I think it should be this: `$source = … -
Began Watching How to get to date based on input date
Hi, how to pass variable value inside js. i want to add **Days** value to **From** date and dispaly it as **To** date here is my code,please go through it,i … -
Replied To a Post in How to get to date based on input date
Use this function to add days function addDays(date, days) { var result = new Date(date); result.setDate(date.getDate() + days); return result; } var date3 = addDays(date2, cap_days); More details here: http://stackoverflow.com/questions/563406/add-days-to-datetime -
Replied To a Post in how to set date range in one date picker using datepicker ui jquery
lol, could at least say what you downvoted my answer -
Marked Solved Status for New Dev/Game PC Advice
Hello reader! I've been working in a laptop with 6GB RAM, i5, 500GB HD and I can't take it anymore! What I mostly use : 1. Office Package (word, excel, … -
Replied To a Post in New Dev/Game PC Advice
Hey fellas, I know it's been a while but only now I had the money and time to buy this box, the best price/performance I could get (in Brazil) for … -
Began Watching how to set date range in one date picker using datepicker ui jquery
given below my code is displaying two date pickers <script> $(function() { $( "#from" ).datepicker({ minDate: -2, maxDate: "+1d", changeMonth: true, numberOfMonths: 2, onClose: function( selectedDate ) { $( "#to" … -
Replied To a Post in how to set date range in one date picker using datepicker ui jquery
Uhm, what you're asking seems strange to me... if you need to inputs of dates why do you want to use only one input? Anyway, once the first date is … -
Replied To a Post in Brackets SQL Connector Extension
Lol, you seem surprised that it does work =P But if you need to find a bug to feel better, it's easy, I know lots of them! lol. Just browse … -
Began Watching Native JavaScript Dynamic drag drop
I need to dynamically create two DIVs and an item to drag/drop between the two. If I code static HTML this works fine but dynamically I am missing something. Has … -
Replied To a Post in Native JavaScript Dynamic drag drop
Basically you need to get the events and use them. To allow drop you need to `evt.preventDefault()` on dragOver and also to stop browser redirection on dropped. Checkout an working … -
Began Watching Integrating a class properly
Hello, I ask your help in order to use this class. I need your explicit example is the code and form to use it properly. http://www.phpclasses.org/package/9683-PHP-Validate-and-add-watermark-to-uploaded-image-files.html#view_files $upload = new ImageOperations(); … -
Replied To a Post in Integrating a class properly
Man, you could get lucky and someone that already used this class could come in an give it all on a platter to you, but's that unlikely. You should attempt … -
Replied To a Post in Brackets SQL Connector Extension
Thanks for testing! =) But tell me, is it usefull for you? Any suggestions are welcome. The next thing on my mind to implement is storing db changes(alter/create tables, columns … -
Replied To a Post in How to force a text to fit inside a div
Just a remark about your code, it would be much more elegant and performatic like this: var $overlay = $('#overlay_image_text'), engraving = this.engravingFontCaseSenstiveOptions(cText); if( engraving == "Lower") { $overlay.css({ 'margin-top':'-162px', … -
Began Watching How to force a text to fit inside a div
I have a div with `width: 200px` and I am adding text in it dynamically, I want the text to fit in this div but the text is getting out. … -
Replied To a Post in How to force a text to fit inside a div
You can use `word-wrap: break-word;` to break the long words. http://www.w3schools.com/cssref/css3_pr_word-break.asp You can also use `overflow: auto;` to enable scrolling when the content is too big. -
Replied To a Post in Display selected image in popup / jquery confirmation
Glad to know =) Just mark as solved please, you can open another thread if you need futher assistence. -
Replied To a Post in Migrating to Linux - Any Tips?
Man! It was going well, had web env for php/mysql runing with my projects already, had already installed vbox with an Win10 image for testing, until...I tried to install team … -
Replied To a Post in Uploading files to server
It can be in either way... server-name or server-port should both end up on the same server. The server can be configured to only accept one or another, but usually … -
Gave Reputation to rch1231 in about bittorrent
Here is a pdf that is a few years old but covers the basics pretty good without being very big. Their license says I can share it as long as … -
Began Watching help me to solve these questions for c#
Given a typed List collection of int values named dueDays that has already been sorted, write the code to retrieve the index of the element with the value 30 and … -
Replied To a Post in help me to solve these questions for c#
"help me solve my homework?" -
Began Watching Adding image in SQL/MySQL database
hi all, I am having a problem with importing images into Database with code. I've done this so far Dim conn As New Data.SqlClient.SqlConnection("Data Source=virtualmachinelink,1433;Network Library=DBMSSOCN;Initial Catalog=School Management;User ID=me;Password=mypass") 'dont … -
Replied To a Post in Adding image in SQL/MySQL database
If the column it's an image you can't add text to it, you need to parse to a byte array. If you have an base64 image string for example, you … -
Began Watching Login Form That Gives Me How Much Time Spent The Logged User.
Hi This Satani Ketan , My Question is i am Making A login Form using c# windows application..so i have to use session and coockies in my form..that provide me … -
Replied To a Post in Login Form That Gives Me How Much Time Spent The Logged User.
I'm confused... you developing in Windows Forms with C#? Is that it? If it is, then there's no cookies or sessions. You can just hold the login date on the … -
Replied To a Post in Brackets SQL Connector Extension
Thanks Bob! But since it's an open source, it's not advertising, it's sharing. And it's not a product, it's a project =) This is how I see at least ^^ -
Began Watching Uploading files to server
Greetings, I am a newbie in web development and I am working on a website backend using ***ASP.NET***, ***Bootstrap***, and ***jQuery*** and I need to upload files, simply photos, that … -
Replied To a Post in Uploading files to server
There's lots of good tutorials and even ready to use plugins about this, take a look: Tutorials: http://www.codeproject.com/Articles/806075/File-Upload-using-jQuery-AJAX-in-ASP-NET-Web-API https://dzone.com/articles/async-file-upload-jquery-and http://www.encodedna.com/webapi/multiple-file-upload-using-html5-jquery-ajax-webapi.htm Plugin: https://github.com/blueimp/jQuery-File-Upload -
Began Watching Display selected image in popup / jquery confirmation
Hello, anyone have any idea on how to display selected image in popup box? and then upload. Currently, the basic way is to display the selected image in a <div> … -
Replied To a Post in Display selected image in popup / jquery confirmation
Since you are using bootstrap you could use BootstrapDialog, quite easy... Just call BootstrapDialog.show({ title: 'You title here', message: $(images) }); And to upload it you could use xhr itself … -
Created Brackets SQL Connector Extension
Hey fellas, some time ago I started trying out Brackets, and guess what? Loved it! If you don't know, it's an open soude editor made out of html, css and … -
Began Watching Brackets SQL Connector Extension
Hey fellas, some time ago I started trying out Brackets, and guess what? Loved it! If you don't know, it's an open soude editor made out of html, css and … -
Replied To a Post in Migrating to Linux - Any Tips?
Oh boy! I wish I could! But you know, I still need to maintain an VB.NET using Visual Studio 2008. Can't even update it to newer IDE's because of client … -
Replied To a Post in Convert GET to POST for the javascript function
You're welcome. Just mark the thread as solved please. You can create a new one if you need futher assistence. Cheers! -
Began Watching How to use variable in MySQL statement
How can I use a variable in a MySQL select statement? Code: $serverid = $_SESSION['server_id']; $sql = "SELECT * FROM servers WHERE server_id = '$serverid'"; -
Replied To a Post in How to use variable in MySQL statement
If i'm not blind i think your code is correct... Now you take that full sql query string and query it with @mysql_query() or @mysqli_query() or whatever extension you're using. … -
Began Watching Convert GET to POST for the javascript function
I have this function call which I need to convert to POST request because this is getting popped up in query parameter in SSL security threat. Could you please help … -
Replied To a Post in Convert GET to POST for the javascript function
You can just take apart the URL page and the params, like this: function LoadYearMakeModelUsingAutoVin(controlItem, dataSourceUrl, postParams) { ... var xmlHttp2 = new XMLHttpRequest(); xmlHttp2.open("POST", dataSourceUrl, false); //Set proper header … -
Began Watching Browers show code instead of the page itself
I have seen this question posed everywhere but not with the answers that solved it for me. So I played and played and discovered, da dah, the problem. Let's say … -
Replied To a Post in Browers show code instead of the page itself
I'm a little bit confused by what you're saying, but let me try to explain to you how it works: When the browser request newspaper.com/sports, the WebServer (IIS or Apache …
The End.