sirknight
Members-
Content Count
20 -
Joined
-
Last visited
Everything posted by sirknight
-
Mirror My MySQL Database To Another Mysql Server
sirknight replied to sirknight's topic in Programming
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. -
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?
-
How Do I Create And Write To Files? creating, writing, deleting files
sirknight replied to alfonzo's topic in Programming
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. -
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.
-
Research: Really How Popular Are Blogs?
sirknight replied to rhodesian.dragon's topic in Websites and Web Designing
No. I still prefer to host a froum than blogs.It seems more actively participation from the user/viewer. -
Well its good.Its like you are watching a cartoons.I think it was all done in flash.Am i right?
-
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.
-
Developer 2 Developer Connection Connect Developer to Developer
sirknight replied to arunkumarhg's topic in Programming
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. -
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.
-
Where can i get this game? is this for free?
-
Want To Connect Computers.. For a LAN party
sirknight replied to nakulgupta's topic in Computer Networks
Yes,it definitely possible. All you have to do is to setup the protocols correctly. -
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.
-
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.
-
Hi..I want to ask if its possible to automatically mirror my mysql databases into another mysql server?or create a small php script to do this?The reason is because, we all know that database is very improtant if we have dynamic website.I have my forum hosted and i want to automatically mirror this or backup into another mysql server(free). Like in freesql.org. So that im not afraid that i forgot to backup my database..also i have one central backup database.Thanks for the help..Im looking forward for this posibility.
-
Get A Free Domain An easy way of Getting a free domain
sirknight replied to junaid's topic in Websites and Web Designing
Actualy, nothing is really free..You need to have Unique Hits so you will stay free of monetary charge. -
HI, I try to install the Ultimate shoutbox. Everything is successfull when applying the MOD. But when i edit the index.template.php and modify as stated above, it give me an error..it looks like this:Fatal error: Call to undefined function smfshout() in D:\home\jascdemolay\community\Sources\Load.php(1040) : eval()'d code on line 284