Re: Uploading zip files Community Center Meta DaniWeb by jbennet zips should be fine. In the past i have uploaded a few megs worth of html/php/css/jpegs in a zip file Downloaded zips become corrupted Programming Web Development by dmkp Hi, wasn't sure where to put this. However since I used PHP in my download script, felt it was appropriate to ask here. Anyway my problem is pretty easy to describe, any downloaded zips off my website are corrupted (however are fine before being uploaded). Is there a way to diagnose what the problem is? Thanks. HashSet contains duplicate elements? Programming Software Development by Bladtman242 …of this ad-hoc parser public ConstructTrieData (String zips, String edges, String nodes) { //initialize the…exist/can't be read File zipsF = assignRFile(zips); File edgesF = assignRFile(edges); File nodesF =…;;"); //add K=zip V=cityName tothe zipmap zips.put(Short.parseShort(l[0]), l[1]); }… Re: HashSet contains duplicate elements? Programming Software Development by Bladtman242 … data set contains zip codes but not city names, the zips are then mapped to city names later, from another file… Re: Help With Join Query Programming Databases by JorgeM …, data.Monthly_Rate, zips.ZIP_LOOKUP_CODE AS Expr1, zips.State, zips.County, zips.City, zips.Zip FROM data INNER JOIN zips ON data.ZIP_LOOKUP_CODE = zips.ZIP_LOOKUP_CODE WHERE (zips.Zip = @zip… Zip Codes Programming Web Development by CFROG … loaded into an array such as [icode] $zips = $z->get_zips_in_range("".$my_zip."&…to iterate through the resutls, ex. [icode] foreach ($zips as $key => $value) {}[/icode] with …;, "".$distance."", _ZIPS_SORT_BY_DISTANCE_ASC, true); foreach ($zips as $key => $value) {} $sql="SELECT… Re: Adding commas in PHP/MySQL problem Programming Web Development by jtreminio … and it just outputs the zips on one line with no comma between the zips. [CODE]foreach ($zips as $key => $value) { $zip…;, $zip);[/CODE] or: [CODE] $zipArr = array(); foreach ($zips as $key => $value) { $zipArr[]= $key; } $zips = implode(", ", $zipArr); [/CODE] or: [CODE… Re: Zip Codes Programming Web Development by diafol … AS up ON u.id = up.user_id WHERE zip IN ({$zips}) ORDER BY surname, firstname";[/CODE] The "INNER JOIN… to avoid the loops: You need to check if the $zips array is able to parse to a simple list array… to tweak your free script to give you the right $zips output that you need. !!Beware, if an user does not… Re: Zip Codes Programming Web Development by cwarn23 … is escaping the variable $key like the following:[CODE=php]$zips = $z->get_zips_in_range("".$my_zip."", ""…;.$distance."", _ZIPS_SORT_BY_DISTANCE_ASC, true); foreach ($zips as $key => $value) {} $key=mysql_real_escape_string($key); $sql="SELECT… Re: Zip Codes Programming Web Development by CFROG … AS up ON u.id = up.user_id WHERE zip IN ({$zips}) ORDER BY surname, firstname";[/code] [icode]SELECT u.*[/icode… = up.user_id AND u.id = uo.user_id WHERE zip IN ({$zips}) ORDER BY first_name";[/code] Then I would just use… Re: Zip Codes Programming Web Development by diafol … AS up ON u.id = up.user_id WHERE zip IN ({$zips}) ORDER BY surname, firstname"; [/CODE] [QUOTE]SELECT u.* would… JOIN user_profile ON users.id = user_profile.user_id WHERE zip IN ({$zips}) ORDER BY users.surname, users.firstname"; [/CODE] [QUOTE]AS… Re: Zip Codes Programming Web Development by CFROG …, in it's entirety looks like this now. [code=php] $zips = $z->get_zips_in_range("".$my_zip."", ""…;.$distance."", _ZIPS_SORT_BY_DISTANCE_ASC, true); $zipcodes = array_keys($zips); $zcodes = implode(",",$zipcodes); $sql="SELECT * FROM users… How can i use the d3.js for database value..? Programming Web Development by jeraldmuthu …for (var i = -1, m = d3.min(arguments, d3_zipLength), zips = new Array(m); ++i < m;) { for (var j… = -1, n, zip = zips[i] = new Array(n); ++j < n;) { zip[j]… = arguments[j][i]; } } return zips; }; function d3_zipLength(d) { return d.length; } // Locate the … Windows Live Messenger Pic.zip trojan infected.. Hardware and Software Information Security by drakkana … figured out..which inserts to your system and then sends zips to all your messenger contacts..with a large variaty of… anti-viruses, when i connect to messenger it starts sending zips to my contacts.. [COLOR="Red"]BE VERY CAREFULL… PHP-MySQL question Programming Web Development by shasha821110 … value live inside the rectangle in my database [CODE=php]//zips is my table in the phpmyadmin //$swlat and $swlng are…, same format in //$nelat,$nelng $sql = "SELECT ZipCode FROM zips WHERE Latitude BETWEEN '$swlat' AND '$nelat' AND Longtitude BETWEEN '$nelng… Re: PHP-MySQL question Programming Web Development by ShawnCplus … narrowing it down again. Ie., [code=sql] SELECT ZipCode FROM zips ORDER BY Population DESC LIMIT 5 [/code] Then [code=sql…] SELECT ZipCode FROM zips WHERE Latitude BETWEEN '$swlat' AND '$nelat' ORDER BY Population DESC… Re: MSSQL Server problem writing VARBINARY data. Programming Databases by LED555 … #################################################################### # # Store binary data to a database table "zips" # # # CREATE TABLE [dbo].[zips]( # [id] [int] IDENTITY(1,1) NOT NULL, #…[raw_file] [varbinary](max) NULL # ) ON [PRIMARY] # db "INSERT INTO zips (timestamp, inserted, filename, raw_file) \ VALUES ('09/26/09','09/26… Re: MSSQL Server problem writing VARBINARY data. Programming Databases by LED555 …#################################################################### # # Store binary data to a database table "zips" # # # CREATE TABLE [dbo].[zips]( # [id] [int] IDENTITY(1,1) NOT NULL, …] [varbinary](max) NULL # ) ON [PRIMARY] # db "INSERT INTO zips (timestamp, inserted, filename, raw_file) VALUES ('09/26/09','09/26… Zipping a Folder with Directory structure Programming Software Development by VinayRok … sub folder and files also.. And i need code which zips with folder structure.. not only a just a file.. it… also zip folder to..! I search in net..! it only zips the file only..! but i need as i mentioned it… Re: Adding commas in PHP/MySQL problem Programming Web Development by adamworld … and it just outputs the zips on one line with no comma between the zips. [CODE]foreach ($zips as $key => $value) { $zip… Re: Adding commas in PHP/MySQL problem Programming Web Development by diafol [CODE]$in_string = implode(",",$zips);[/CODE] //EDIT jtreminio - sim. post. I think the array is [B]$zips[/B] though not [B]$zip[/B], if he's using: [B]foreach ($zips as $key => $value)[/B]. Re: Complex Query Help Programming Databases by MetalHobin That worked, except for the Zip column, I am still getting redundant zips. For all of the zips with the same first three letters, I would like to group those together. I can't find a syntactically correct way of incorporating DISTINCT into this query. Re: Adding commas in PHP/MySQL problem Programming Web Development by adamworld …;, $zip);[/CODE] or: [CODE] $zipArr = array(); foreach ($zips as $key => $value) { $zipArr[]= $key; } $zips = implode(", ", $zipArr); [/CODE][/QUOTE] This… Downloading .zip's go into temporary files.. Hardware and Software Microsoft Windows by t0x Whenever I am downloading files from the internet that are .zip's. They go straight into my Temporary internet files and I can't save them any other way. All other files save to how I want them, but im not sure why the .zips are doing this.. Please help! Thanks.. -t0x Btw, I have Windows XP Pro, IE6 Re: Downloading .zip's go into temporary files.. Hardware and Software Microsoft Windows by DMR … bit obscure. One question: if you right-click on the .zips, do you get a "save link as..." type… IE server errors, unable to download Hardware and Software Microsoft Windows by Taniwha … way round the SP2 security blocks for people sending me zips but Windows updates, Mozilla, etc I just get a download… file download links script Programming Web Development by nathanpacker Hey everyone, Say I have a folder full of files, zips or whatnot. Is there a script out there that will … Can some1 check over this log for me Hardware and Software Information Security by ROB04050916 … Office\Office10\MSACCESS.EXE C:\Documents and Settings\mine\Desktop\Zips\hijackthis\HijackThis.exe R1 - HKCU\Software\Microsoft\Internet Explorer\Main… Re: Can some1 check over this log for me Hardware and Software Information Security by ROB04050916 … Office\Office10\MSACCESS.EXE C:\Documents and Settings\mine\Desktop\Zips\hijackthis\HijackThis.exe R1 - HKCU\Software\Microsoft\Internet Explorer\Main… can we download files from other websites using php Programming Web Development by ishwar …, in our school, downloading of music files,aqvis,mpeg, exes, zips are disallowed , since i know a bit of php , i…