Jump to content
xisto Community

sirknight

Members
  • Content Count

    20
  • Joined

  • Last visited

About sirknight

  • Rank
    Newbie [Level 1]
  1. You get my point. Thanks,.But i want to replicate or mirror my database here in asta host to another site.Actually this is much related to my other post, and as you have said Xisto did not allow to access my mysql database from other site. which i want to do so im no longer worry i dont have backups.
  2. Thanks...you're understanding from my post is right..Actually that was i want to do, access the database i will create here in Xisto.thoug not in the other site but in my local computer so that its easy for me to backup my database here in Xisto in the future. Because i cannot guarantee that i can backup regularly my database here. Anyway is there any way to automatically backup my database and can send tru my email?
  3. Before you can write data into a file this should be existed: Here is a sample code on how to read/write into a file. Create a new php file then type this: <?php$myFile = "test.txt";$filehandler = fopen($myFile, 'w') or die("can't open file");$stringData = "You're text here \r";fwrite($filehandler, $stringData);$stringData = "Another Text here \r";fwrite($filehandler, $stringData);fclose($filehandler );?> Explanation: Var $myFile on the first line declares the filename of you're file.If its on different directory please specify that directory where it is located. The second line creates a variablle that will handle the file..That is why i called this file handler. fopen() is a function that will open that file. 'w' is for you to write..If you only want to read it just make it 'r' $stringData variable is the string or character you want to write on the file plus a carriage return. The fourth line will actually do the writing. fwrite() function.It takes two parameter the filehandler and the string you will write which is $stringData. And everytime you open a file you will also need to close this using fclose() function. Hope it helps.
  4. Nice thread..Maybe this is a good place to post all you're experiences to different free webhosting who is claiming that they have the very best free web hosting service. I have so many list of this bad webhost..I will just compile this and put my comments on every webhost and will put here for the benefit of all of us.
  5. No. I still prefer to host a froum than blogs.It seems more actively participation from the user/viewer.
  6. Well its good.Its like you are watching a cartoons.I think it was all done in flash.Am i right?
  7. beware of some free subdomains offer above..Some of them have spywares like the cjb.net. i have so many friends having a bad experience in this.so be aware when choosing.
  8. Count me in also..Though im really busy with my job but i can still manage to participate in different forums.In both cases: to ask questions and to answer questions.
  9. as of now, you dont have a problem since you are just starting and you dont have any files..Just create a folder like the one you have before.
  10. Where can i get this game? is this for free?
  11. XML gives a very promising features in web arena. Thoug as in my knowledge very limited support in terms of how you display this.
  12. In my opinion, using tables still the best way to manage your'e web page design..It's also make use of cross-browser..so you are not to worry what type of browsers you're client will use.But actually, this forum gives me a hint that i can also create a site more on CSS, that i will try soon.
  13. Yes,it definitely possible. All you have to do is to setup the protocols correctly.
  14. SMF is my bet...It will look like you have you're own forum program..well if you're site is no other than forum, mybe you will choose IPB.but its not free.
  15. How do i know what is the Xisto server we are using in our subdomain?Because i want to use my databases here in my Xisto while im in developing my site.please fillup what can i use here:host:port:ofcourse its not localhost.
×
×
  • 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.