Jump to content
xisto Community

itssami

Members
  • Content Count

    258
  • Joined

  • Last visited

Everything posted by itssami

  1. itssami

    Msn 8.0

    I m using MSn beta for atleast 4 months ... and i still have some invitations...if someone wants , i can send them..u can pm me..but remember on msn beta , you can only use the email address where i will invite. no any other hotmail email will work on msn beta..
  2. I got this excercise from school, im trying to understand it but im unable..can someone help me ?its very small problem but im not getting the point.------------------Create a string: $wholestring = ?splitwholestring?; And split it to array using for loop. So that you have a array containing all the letters of the string: array[0] == s, array[1] == p, etc. Display results. (hint: strlen(), substr() - functions are useful)------------------
  3. Thank you very much for both of you guys to help me.. both of them works... but they just display the file names..and date..i want to give the hyperlink to the file also , so that when some one clicks on any of the file , it opens that file directly..(these functions just prints the names of the files.) thank you once again
  4. Hey..I think this doesnot display the entries by date.. i want that the latest added file in any directory should appear at upper..and then others lower by date of adding..the following function displays the files by alphabetically..
  5. For example,i have a directory , which has 3 sub directories a,b and c...and i have some files in all subdirectories..is it possible that i can display the latest added files to any of sub directory a,b, or c.?i think i will have to use sort by date function but how it should be done that it compares the files of all the subdirectories directories ?
  6. thanks..i have edited a lil bit the above code..now it displays all the files and folders within a directory...but the problem is that , for example i have index.php file in that directory , it shows that index.php file also in the list..i want that it should show every file but NOT index.php.. what i should do for that ?? <?php$path = "./";$narray=array();$dir_handle = @opendir($path) or die("Unable to open $path");echo "Directory Listing of $path<br/>";$i=0;while($file = readdir($dir_handle)){ if($file != '.' && $file != '..') { //echo "<a href='$path/$file'>$file</a><br/>"; $narray[$i]=$file; $i++; }}sort($narray);for($i=0; $i<sizeof($narray); $i++){echo "<a href=".chr(34).$path.$narray[$i].chr(34).">".$narray[$i]."</a><br/>";}//closing the directoryclosedir($dir_handle);?>
  7. i dont mean to bother but it still shows blank screen... for example i have a folder "test" in htdocs.. and i gave the path $path = "test"; but it shows blank screen.. and if i give any wrong name of the folder which doesnt even exists in htdocs , it still shows blank page, even it should say "Unable to open ..." im trying to find the problem but cant..
  8. The following code displays the files of folder...but they are displaced by the order of adding... i want to sord the files / folders alphabetically and sord by accending order and by decending order.. can some one help me. echo "<a href='$path/$file'>$file</a><br/>"; } } //closing the directory closedir($dir_handle); ?> linenums:0'><?$path = "";$dir_handle = @opendir($path) or die("Unable to open $path");echo "Directory Listing of $path<br/>";while($file = readdir($dir_handle)) { if(is_dir($file)) { continue; } else if($file != '.' && $file != '..') { echo "<a href='$path/$file'>$file</a><br/>"; }}//closing the directoryclosedir($dir_handle);?> Notice from electriic ink: Use tags for code!
  9. I have a folder on my hosting space..(i.e. public_html), i want to add this folder on my php page.., . how it should be done that, when i add some file in the folder using ftp or anything , the folder on that page automatically includes that file.for example , if the folder has 5 files..and on page it says "folder has 5 files"and shows the files...and when i have uploaded 2 more files ,it should automatically say that folder has 7 files..
  10. Yes.. thats what im looking for.. im not looking for a link on my website which will search dmoz directory..im trying to upload their directory on my website.if u see dmoz.org carefully there are some instructions how to use that but i couldnt find them very helping so i thought may be there is some external help..
  11. Is there any kind of tutorial to guide how to run on the dmoz directory on our own website?I tried to download their directory but i could understand nothing.if theres some way ,let me know.there are some instructions on their website but those didnt helped alot.thanks
  12. i want to include a css file in a webpage , but i want to to keep it somewhere where people can not access it.for example ,if i keep a css file in, domain.com/somefolder/cssfile.css , then anyone can access it.. because in page dource there is that css file url.. i want that even when someone save the page , he can not have access to my css file.. is it possible ?? thanks
  13. i tried to find that topic but i couldnt find..if u have link of tha ttopic pls tell me.. and will it not be easy if i use only one database for all of the cms ? and then i can make a general registeration form.. (it will check which user name is taken and which is available).. members data will be stored in one database.. and then with that id and login , a member can login to all the cms... because i have connected all of them to one database.. did you get my point.. i want to ask if it is possible and if it will work ?
  14. I want to install 4 scripts on my website ..1- Gallery2-Classfied Ads3-Game Cheats Script (A simple script where ppl can register and then submit the cheats)4-Php NukeThe problem is that all of 4 scripts needs registeration of members (use 4 different databases)....I want that all the member which is registered at one place can login at all of the services..i mean , one registeration form , that can work for all.. how i can do it ? Please tell in details..thanks.
  15. i want to fetch some latest topics written on my ipb board , on the main page of website.i think it is possible with rss feeds.. ( converting rss feeds to javascript)... i want to know , are there rss feeds available for Invision power board..??if no or its not possible , is there any other way to fetch the fixed number of latest topics ..( say 5 latest topics) on the main page of website. ?
  16. Im looking for some kind of script in Php related to music.. so that people can rate the songs..albums etc.AND / OR a script , through which users can send lyrics(text) ... and they will be published automatically.. and anyone / everyone can edit the lyrics , if he is member .. eg. all members can edit all lyrics.if some one know this kind of script please let me know.(if its free , its best)
  17. I want to know how the websites like http://hp.myway.com/portal/ttab02/index.html publish news? They do not have their own news .. they take from other sources... for example reuters..most of the news from yahoo are from AP.. of course these websites are very big and they have some professional services..but i just want to know , how does this work ?What is the way to publish news on website ? Is there any news services which allows to print the complete news articles on others website ? Usually rss news prints only headlines.. if there is any information about it please let me know.
  18. Suppose i have a website.. domain.com , and have phpbb forums on domain.com/forums..And i want to display the new topics written in the forum on the main page of website...how i can do that.. ?for example ,I want to display this topic `?"domain.com/forums/viewtopic.php?t=16"how can i do that ?
  19. Im looking for some script which can fetch news from Reuters or any other news website and publish on my own webite.(of course i'll mention clearly that it is from reuters or anything else).. I dont mean RSS feeds where i can put only headline of some lines and then the link of the news website..i mean , for example on front page of my website there will be headlines..and when some one click on headline , it opens details of news on my own website, Not on the reutors etc..Is it possible ?
  20. It will be my pleasure if you could take couple of minutes from your precious time and visit my new website http://www.talkby.com/ This is some kind of forums based website , there forums are about the domain names trading ( you can sell you domain names , buy domain names , and you can offer your programming services to others or ask for same.. and you can offer hosting services and ask for that.. Since the forums are very new thats why it will probably look very empty , but i humbly request every one you to join the forum because it can be an interesting place. I will love to hear from your suggestions and your questions regarding to http://www.talkby.com/
  21. I just want to know , that is it possible to have name servers of own choice from some paying hosting company? ? something like , ns1.mydomain.com instead of ns1.hostingcompanydomain.com.i think its not possible??
  22. Thanks every one for explaining ... i have got my answer..i can understand the terms of services of xisto..thats okay..actually i was interested in another hosting company also , they are very very well knowned and they said me clearly that i can upload the indian songs. i just wanted to know .
  23. Im thinking to move to Xisto - Web Hosting.but i have a very important question..I want to upload the " indian movies mp3 songs " on my hosting,. so that people can download them.I want to tell you that there are unlimited number of websites which are offering these mp3 songs to download so i think there shouldnt be anything wrong with the copyright things.. i want to be sure. (im interested in it because all websites are popular).In case , you dont allow that, can you tell some hosting companies which allow mp3 songs hostings ? (I want to upload only Indian mp3 songs.. not Hollywood)
  24. Couple of months ago i was using Norton Antivirus & Norton Internet Security ... and they worked fine but now im using McAfee Antivirus 2006 , and McAfee Internet security 2006. it works fine too.But i like it more since it doesnt bother alot unlike the norton antivirus.
  25. yeah , thats what i was trying to explain ... sometimes if i doubt in my connection , i have said my friends to open my website but it doesnt show..and i have tried to open my website at diffrent computers by myself..and it remains same.this problem happens more often now. anyway , what i can say..
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.