Jump to content

Leaderboard

  1. Phun

    Phun

    Retired Staff


    • Points

      2

    • Posts

      1,119


  2. Skreamzja

    Skreamzja

    Community Regular


    • Points

      2

    • Posts

      579


  3. Verified

    Verified

    Collaborator


    • Points

      1

    • Posts

      601


Popular Content

Showing content with the highest reputation on 11/03/2013 in all areas

  1. Pre-Paying for hosting can be great but as you can see it can also have nasty results. :/Sorry to hear this chris.
    2 points
  2. PHP Tutorial For Noobs Knowing Html Is enough to follow this tut guys, Im also a noob in PHP at this moment [ 18 : 9 : 2013 ] But now ive set my mind to know fully about php and also decided to share my learning notes with u guys. Ive been an IPB user for a while and ive always depended on my friends to help me out with php codes, so ive decided to learn php now, i know html and css, according to results from google i guess its enough to learn php. Im going to learn Php on my own from today using video tuts and ive decided to post the day to day notes i take and upload daily example php files i create while learning php so that it might be helpful for others learning php. Please dont give any bad comments guys, my friend said that if i maintain a page in any online forum for this then atleast for the sake of updating the thread i will finish the day to day course and that sounded like a good suggestion for me so im doing this. And also Noobs in php like me will get ideas from some masters in this language. @All php masters if u find any mistakes done by me during my period of course kindly correct me and if u have any suggestions or tips for me feel free to post here. Wish me luck to finish the course guys . Note : Everything i post here is fully typed ( imp notes indicated ) by me while following large video tuts, its not a copy paste from anywhere. and i use video tuts from 2 sources to cross check them both before posting notes here. If u wanna know about simple stuffs like what is php and what it can do, etc go to ( If below link is not allowed kindly remove it ) PHP opensource Official pagehttp://in3.php.net/manual/en/intro-whatcando.php Ps : My friend gave me a 8GB video content files which contains webdesigning tuts, if u know any online sites which gives full core info about the program please guide me towards it also. Thanks. Edit : Thanks Admin for approving this thread .
    1 point
  3. okay, well you can change the position of the calender in the sidebar to the bottom of the sidebar if that's what you want to do? ACP > Manage Hooksfind the calendar sidebar hook and drag it down to the bottom of the page then refresh your main site page and wallah it's moved to the bottom of the sidebar
    1 point
  4. okay great, don't forget to click the "Mark as Solved" on my post please
    1 point
  5. here you go bro.. Go to admin>applications_addon>other>moods>modules_public>ajax>change.php In that search for this : /* Let's do the final parse and return it */ Once you get that, delete that whole section: /* Let's do the final parse and return it */ $return .= eval(base64_decode('cmV0dXJuICc8c3BhbiBjbGFzcz0iZGVzYyBsaWdodGVyIGJsZW5kX2xpbmtzIHJpZ2h0IGlwc1R5cGVfc21hbGxlciBpcHNQYWRfaGFsZiIgc3R5bGU9Im1hcmdpbi10b3A6LTIycHg7Ij5Qb3dlcmVkIGJ5IChUQikgTW9vZHMgJmNvcHk7ICcuZGF0ZSgnWScpLicgSW52aXNpb24gQnl0ZTwvc3Bhbj4nOw==')); this should do the trick. if it doesnt work, let me know. Best of luck. Also if you achieve it, then mark this as answered.
    1 point
  6. hmm..ok i'll try making a tut of it.. I hope I can help, and in the meanwhile no one else solved it out. my work will go waste lol.. Edit : I'm not sure If I can work it out, but I'll try
    1 point
  7. Overwrite the nulled admin folder with a retail one and input your license key.
    1 point
  8. 3. Variables. * String Variables. Is a container of an information, U can assign strings to a variable or assign another variable to it. When ever u use the variable in that php script, the information assigned is displayed after php is interpreted. - starts with a $ - Eg : $name = "stefan"; // ( "stefan" is the value ) - case sensitive. always use small case to keep easy track of them. - Always try to keep ur variable as explanation for ur value so that itll be easy to understand while looking at ur script. ( u can use _ to split two words ) - dont use any special symbols or numbers in the begining of variable. * Now well create a php page which contains comments, string assigned to a variable n a variable assigned to anoter variable. <?php$username = "Sathish";$current_user = $username; // here we r assigning a variable to another variable.;$Current_user = "Ataraxia"; // As said earlier Variables are case sensitive so both r different.;$testing = "Invisible";$checking = "hide";echo $username;echo "<br/>";echo $current_user; // As we learnt variables are case sensitive lets check it.;echo $Username; // No such variable so error will occur .;echo "<br/>";echo $Current_user // we have that variable so that string will be interpreted;// Below is a multi line comment n its contents wont be interpreted./* echo $testing;echo $checking; */?> If above example is interpreted well get below error. >>>> >>>>>>>>>> After removing the undefined variable there will be no errors. >>>>>>>>>> >>>>>>>>>>> Examples for above code is attached as a file, just copy those php files to the www folder, execute n see.
    1 point
  9. ^ Sorry to say bro but as ive posted in post 1 im new to php so it might take some time for me to got such stuffs. 1. Basic Syntax n Structure. * Php is a simple language which roots from C n Pearl but looks more like java n very flexible. * Semicolons - ';' - All php commands end with a semicolon ';', if forgotten php treats multiple statements like one which it doesnt understand n gives 'Parse error'. * The $ Symbol - '$' - All variables must begin with $, Its required to make php parser faster, it simply knows whenever it comes across a variable or variable numbers or strings or arrays. Eg : <?php $mycounter = 1; $mystring = "Hello"; $myarray = array("One", "Two", "Three"); ?> .................................................................................... 2. Comments. * Single line comment - // - This turns a single line into a comment by preceding it with a pair of forward slashes. EG : // This is a comment - This is a great way to temporarily remove a line of code giving error, etc. Eg : // echo "X equals $x"; - U can also use it after a line of code to describe it. EG: $x +=10; // Increment$x by 10 * Multiline Comment - /* */ - This can be used any where in the document to comment out an entire sections of code that dont work, which programmers dont want to be interpreted at the momment. - U cant Nest Comments, if try to comment out a section which already contains a comment, ull get an error in output. EG : /* This is a Multiline Comment */
    1 point
  10. Thanks Admin for Approval and motivation. Also if i do any mistakes please correct me, i already have 2 warning points due to my carelessness. Thanks again 1 Basics of programming concepts * Php is a serverside programming language. * Programming languages has its own special rules n special words that it uses , it tells comps / servers what to do, Eg of programming languages are java, php, ruby, pearl, etc. * Why do we have so many programming languages. We have different dedicated vehicles like trucks, buses, bikes, etc to do specific works like wise we use different programing language to do specific tasks. * Php was designed to create database-driven websites (Dynamic websites). * Most programming languages - Have a specialty - something its really good at. - Can do many things other languages can do. Eg : We can create dynamic sites even using pearl but php is best suited for this job. * Once uve learnt one programming language like php, u would have learnt a lot about lot other languages, php has lot in common with pearl, java, ruby n so on. Learning php make ur path to learning other programming languages easier. .................................................................................... 2. Difference Between Serverside n Clientside Programming Languages. - PHP, ASP, JSP, Colfusion are serverside programming languages, which means all processes related to it run on the server ( Webhost ). * Engines in server side are just programs, A PHP engine is just a program in server that understands and processes php code from browser and sends back processed data as a html code page to the server. Eg : When u click a .php page browser sends the request to server -> server sends the request to PHP engine -> Php engine understands the php codes, interprets / Processes it and sends simple html code page to the server -> The page is sent to our browser. Same happens with .asp or any other server side program pages, only difference is that server sends them to their appropriate Program engine located in server. * Due to this if u try to view the source of a php site ull only see html codes not php codes - JavaScript is a Clientside programming languages which means All processes run on your browser in computer / gadgets. .................................................................................... 3 Setting up ur pc to test PHP Files If u just open ur created php file directly without installing any of the below steps, the browser will just show the raw php code since php is a server side language and needs a php engine to interpret it to html suited for browsers. You can test ur created php examples in different ways, Just Google the 1st or 2nd programs below they are free to download. 1. Mac users can use XAMPP. 2. Windows users can use WAMP. 3. Or u can just upload ur files to ur Webhost. * I would suggest u to install either XAMPP or WAMP which is easy for testing / learning purposes, Since im using windows ill be using WAMP. * After installing XAMPP or WAMP, double click the installed program to run it, check ur taskbars notification area, youll see a new green color icon meaning WAMP is up n Running now. * XAMPP users have to drop ur php files in xampphtdocs folder. * WAMP users have to drop ur php files in c:wampwww - u can create folders inside www folder for separate testing projects. - After Wamp has started, Open ur browser and go to url http://127.0.0.1/, itll open the homepage of Wampserver. - All ur Project folders in c:wampwww folder will appear under Your Projects in home page of Wampserver, u can click the folder of any project to view / execute / test the php file in it.
    1 point
This leaderboard is set to New York/GMT-05:00
×
×
  • Create New...