Jump to content

Search the Community

Showing results for tags 'ftp'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • W3Schools
    • General
    • Suggestions
    • Critiques
  • HTML Forums
    • HTML/XHTML
    • CSS
  • Browser Scripting
    • JavaScript
    • VBScript
  • Server Scripting
    • Web Servers
    • Version Control
    • SQL
    • ASP
    • PHP
    • .NET
    • ColdFusion
    • Java/JSP/J2EE
    • CGI
  • XML Forums
    • XML
    • XSLT/XSL-FO
    • Schema
    • Web Services
  • Multimedia
    • Multimedia
    • FLASH

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Languages

Found 4 results

  1. I'm not sure where to post this - i hope someone can help me. I have a process where I do some of my work on my website and then i do some on my computer. I am using an FTP client on the computer so that when i change a file it automatically updates to the website and it works like a charm. I would think you'd be able to just reverse the process to download a file from the web server to my computer, but I can't seem to make it happen. I know about the <a> download attribute and that has worked, but if I am on the website with my phone and I hit that button, it downloads to my phone when I want it to download to my computer so that I can use it there. I would like to be able to have a button on the website that will always download a certain file to my computer every time instead of doing it manually because another user may be the one clicking the button. Can someone steer me in the right direction or send me some code that would do that (javascript or php preferable). Thank you so much if you can help. I'm pulling my hair out reading all about it and can't seem to find the right answer.
  2. First of all, i am particularly focusing on the cross-reference across files feature. What is it? Simply say, it is like writing Java in Eclipse or Netbeans: When we "dot" a class, a pull down list of member variables show up. When we "ctrl + click" on a usage (of a variable, of a class, of a method, etc), it jumps to the definition of it. I particularly see this feature very helpful, especially when our project goes huge. If we don't need the benefits from this feature, why not use the free and quick editor - Notepad++ ? Many PHP dev tools are equipped with the reference feature. But not many of them can do it across different files. (means in case the definition occurs in a different file of usage.) While I was finding such a (free) IDE which can do this, I heard people keep saying the Eclipse PDT cannot reference across files. Until today, I give it a try. And surprisingly, Eclipse can do it! With the following code snippets: Car.php <?phpclass Car { public function get_type() { return $this->type; // reference OK } public $type = 'ferrari';}class Engine { public function running_in() { // in same file $car = new Car(); // of course this can ref Car echo $car->get_type(); // of course this ok too return $car->type; // of course this ok as well }}?> Driver.php <?php//include 'Car.php'; // works even without include$car = new Car(); // reference OKecho $car->get_type(); // reference OKecho $car->type; // reference OK?> Although this is a good news. Yet I still want to know why people says Eclipse PDT cannot reference across files? Is there any misunderstandings, that I am implementing it wrongly? Also, as many people say, Eclipse is slow because it is Java based. I am ok with the speed. But I still want a comparison list of features of different Web Dev IDE. Thanks for any input about Web Dev Tool discussion! P.S. In addition, JavaScipt list of methods with browser supporting versions (like what Aptana has) would be a very nice feature too!
  3. Hello, Can anyone show me a demo of a code, I'm looking for a form that uses text and file upload. I need a form that has details such as title and content, but I also want an image upload where it saves the file to my FTP server in a folder called Uploads and then it saves the filename and extension to the database, along with the other details from the form. Can anyone give me the code and explain it please! Thanks in advance.
  4. Hi all. I have a problem with a squeeze page. If you take a look at the attached file you'll see what my page looks like on my PC. It's a mixture of HTML,PHP and a style sheet.I wanted to upload it to a hosting account I have (not push button) to be an addition to a website which I need to develop further, based on wordpress.Now, I thought that if I uploaded the page as index.html, along with the html,php and style sheet the page would look as it does onmy pc.Not a bit of it, take a look:http://www.canwork-fromhome.com/Cash-inWhat you see there is just a whilte page with black text. I tried to see if it works but it has lost all it's functionality as well, if you add your details into the fields and press the button nothing happens.So, I'm stuck as I just don't know what to do next.Does anyone have an idea how to solve this problem??Hope you can helpThanksJohn. Squeeze page look.pdf
×
×
  • Create New...