Originally posted by hebisr
how would i move it there?
Well, that's a rather basic question --- I've been having trouble being patient today, but I'll give it a whirl. Whilst I do, do some looking for some kind of document/book/site-with-lots-of-real-readingtype-content to be your "teacher of choice" for a while....
File moving/copying is one of the basics of computer usage/administration, and is generally accomplished with a program or command-line tool, or, in these latter years, through graphical operations within a GUI environment.
Examples:
In a DOS or NT "dosprmpt/cmd" environment.
c:\copy file1 c:\windows\temp\file2
would copy 'file1' to the 'temp' folder under c:\windows and change its name to 'file2.'
In a 'nix (any of a hundred flavors or so...) shell:
$cp file1 /some/directory/here/
$mv /some/directory/here/file1 /var/tmp/file.foo
The first line would copy the file 'file1' to the folder/directory 'here' under the directories 'some' and 'directory' with its original filename. The second example would move (and rename, BTW) the file from its location under /some/directory/here to a file called 'file.foo' in the 'tmp' directory under 'var'. If you carried out both these commands you would have the same file in two locations with two different names.
In a GUI environment, like Windows or X, these operations are generally carried out in 'pointy clicky' ways that I'd think you'd already be familiar with, like "drag-n-drop", or 'right click, pick COPY, change windows, right click, pick PASTE", etc.
What you're seeing here:
Index of/
Parent Directory
phpMyAdmin/
test.php
Is an autogenerated 'index page' of the contents of the webserver's root directory. It's likely that if you were to insert a file here called 'index.html' (actually extensions may vary) you would no longer see the autogenerated list. That why "index" or "home" pages have links to all the stuff on the webserver that you want a surfer to be able to see. The reason you're NOT seeing a list of stuff when you click on phpMyAdmin/ is 'cuz it has a page so named. Get into that folder with your "Explorer" or your command line tool, or FTP, or telnet, or SSH, and have fun!!!
I hope I've not bored, overbore, or condescended too much.....
Good luck 🙂
dalecosp