Blessed
Members-
Content Count
143 -
Joined
-
Last visited
Everything posted by Blessed
-
Greetings..i hava a question.do you know how to convert a xvid or avi file whit a subtitle to a dvdor a avi film to a cd (VCD) or (KVCD)i have record a fiml for school o i want to add subtitle to itbut i dont know how to make them and add them.tnx in advance
-
How to get rid of Thumbs.db have fun Notice from jlhaslip: This posting has been copied from another source. Posting non-original material to gain credits is against the Xisto guidelines as found in the - Xisto Readme - . Continuing to cut and paste will result in a - suspension against your account. -http://www.tutorialsroom.com/tutorials/details/thumbs_db.html
-
Greetings this tutorial will show you some mysql basics.. MySQL is one of the most used database. a simple config file at the top add this <?php?> after <?php add$username= "root"; // Username that has access to your database$password= ""; //Password that has access to your database$host = "localhost"; // The host where the database is (mostly this is localhost)$db = "databasename"; // The name of the database where you want to work with//connect to the databasemysql_connect($host,$username,$password);mysql_select_db($db); Some basic statements Now we're going to see the following statements: - CREATE - SELECT - INSERT - UPDATE - DROP - ALTER - DELETE CREATE: CREATE. You do that like this: CREATE TABLE tablename(fieldname datatype,fieldname datatype,); +----------------------------------------------------- These are the different datatypes you can choose from: Datatype / Explanation +----------------------------------------------------- I will update the post later to add more basic things
-
Greetingswow man i really like thosecan you wrote a tutorial about how to creat pics like that.or can you provide me a links to some tutorials like those.anyway i love those nice jobprpz
-
Gretingsthanx for your answer m8i will look arround on the net to find my answer for the question.
-
i agree whit you m8 but can you use the google adds whit this script
-
yes it add some more things to it later thanx for the reply
-
Greetingswhat mod thid you installed and ca you post the install file;)
-
can you post your code so i can see it
-
Greetingsif you want to use the $_GET function the variable you want to get most be in the urllik http://www.mypage.com/?index=your van value now to get that value us$myvalue = $_GET['index'];simple as thatyou can use more than one var in one linklike this http://www.mypage.com/?index=value1&var2=var2value&var3=value3Have fun with it
-
Try this echo $bbcode->parse($my_content);
-
Add at the top of the file include('bbcode.php'); $bbcode = new bbcode; Just Find <a href='mailto:".$mail."'>".$name."</b></a><br> ".$message."<br> Replace it whit <a href='mailto:".$mail."'>".$name."</b></a><br> ".$bbcode->parse($message)."<br> there you go.if you get anny errors feel free to post
-
You can easy add this one i have posted http://forums.xisto.com/topic/46374-php-bbcode-bbcode-for-your-forumwebsitenews/
-
Php - Randomize Web Title using arrays and the random function
Blessed replied to Blessed's topic in General Discussion
i will post the script soon -
Yest here you Go so more css links http://www.w3schools.com/css/default.asp Really good site http://css.maxdesign.com.au/ http://www.htmlgoodies.com/beyond/css/ http://forums.xisto.com/no_longer_exists/ https://www.sitepoint.com/faster-workflow-mastering-emmet-part-1/css/ if you guy's what some more Css links feel free to ask have fun
-
Greetings for people who dont know what css is i found this on the web What are style sheets? Style sheets describe how documents are presented on screens, in print, or perhaps how they are pronounced. W3C has actively promoted the use of style sheets on the Web since the Consortium was founded in 1994. The Style Activity has produced several W3C Recommendations (CSS1, CSS2, XPath, XSLT). CSS especially is widely implemented in browsers. By attaching style sheets to structured documents on the Web (e.g. HTML), authors and readers can influence the presentation of documents without sacrificing device-independence or adding new HTML tags. more info Here
-
what C++ compyler / program are you gu? usingi whant to learn how to make some litle app and stuff.can you guy's give me some links ;)
-
Greetings i''m looking for a free mail service something like myname.mail.com can i get something linke that tnx in advance
-
i will UPDATE the [Previous] | [Next] when i get home later
-
Use Bb Code On Your Site! Just like on forums
Blessed replied to Unholy Prayer's topic in Programming
yes you can m8but make sure to put it out like this$content = str_replace($html, $replacements, $content);