- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 7
- Posts with Upvotes
- 7
- Upvoting Members
- 5
- Downvotes Received
- 4
- Posts with Downvotes
- 2
- Downvoting Members
- 4
I'm 15 going on 16. I run my own company out of my bedroom/living room/ where ever i crash...
I'm really good at html,css,css3,html5,php,javascript, and more... I LOVE HELPING!!! If you ever need any help, just ask!
53 Posted Topics
Re: [QUOTE=Jaklins;1618792]Update: Lost my train of thought. So if html is in php and there is php in html, I'll end up with php in php, which doesn't really work. I could also close the echo, remove internal php tags and continue the html in another "if else", but I'm wondering … | |
![]() | Re: Maybe look into some mass emailers like newsletter scripts that you can modify? Here is one for 5 bucks on codecanyon [url]http://codecanyon.net/item/yrmail-simple-mailer/73608?WT.ac=search_item[/url] Lemme find it but i know theres a really nice, good looking, well functioning newsletter script that you can easily modify Ok i found it - [url]http://net.tutsplus.com/articles/news/build-a-newsletter-system-with-php-and-mysql-new-plus-tut/[/url] You … |
Hey guys! It's been a really long time since i last posted on the forums! Anyhow, I've got a sort of question to ask that's stumping me. I've looked over this 3 or 4 times but i just need another pair of eyes. so im trying to get the nav … | |
Re: Is it connecting to the database ok? there isn't a password on that connect statement. | |
Re: Are you trying to do this in php or just in mysql? | |
Re: The only thing i can think of thats guarrentied to work is using a form.. in textbox 1, enter the orginail url, and in textbox 2, enter the new url. Then replace url 1 with url2 Can't think of doing it any other way that will do them all in … | |
Re: Just do it yourself, They aren't hard to make and there are plenty of tutorials online. | |
Re: Use the CODE tags when your making a refferance to how you need it. Please re-explain it as that is completely confusing and i don't understand anything you asked. | |
Re: Can you explain a little more on the situation, why not just setup a mysql table that enters the url to the video, and has a 1 if its verified and 0 if its not. The run an [CODE]if { }else{ }[/CODE] to see if $video has 1, display else … | |
Re: No, facebook set it up so the user MUST click the like button. There is no way, as it would be "Fraud likes" because the user isn't actually clicking like. Lol it sounds silly but its true. | |
Re: Ok so you have a mysql database.. like this... [CODE]_____________________________ | id | username | pass | ------------------------------ | 1 | dog | dogs | | 2 | retard | moo | | 3 | yoyo | ruff | | 4 | coder | bryan | -----------------------------[/CODE] now you want … | |
Re: Hi eltonpiko, If you are doing it in PHP, I suggest you just do it via email. You can email cell phones really simply. Its usally like [email]5552962@vmob.com[/email] (virgin mobile, thats not the real one) So just store the numbers in a database with id/name and then echo it into … | |
Re: For the login and signup system, go to [url]http://net.tutsplus.com/[/url] They have some great tuts. If you search for login, theres one that even has email activation. | |
Re: Ok so what you want to do is first upload the image with the script. Just make him select the image file ect and then when he submits that form. Have it put the link to that image onto a variable. Then insert the variable data (the image link) into … | |
Re: Hey, im sorry if this is late, but give me the static webpage files, ill make it into a wordpress theme for you. | |
Re: You might want to go over to the CodeIgnitor forums and ask there, you not only will get a faster response, it will most likely work. | |
Re: also try doing [CODE] background-color: #000;[/CODE] to see if the sections displaying, When i code up a design, i always set random solid colors to make sure i get the layout all setup | |
![]() | Re: add [CODE]position: relative; [/CODE] to each of those and they will bump up against eachout ![]() |
Re: Hello Kavatae, Welcome to DaniWeb! Glad to see you came here first! What your asking for is going to be hard, and it may cause some brainstorming issues. The first thing you need to think about is do you want to show statistics of a horse or do you want … | |
Re: I'm sure this is alreaedy solved and you haven't closed the thread yet but... <?php printf($variable) ?> to print a variable... then just require_once the script that makes the $variable For example [B]Index.php[/B] [CODE] <html> <head> <?php require_once 'my_script.php' ?> <title><?php printf($title); ?> </head>[/CODE] [B]my_script.php[/B] [CODE]<?php $title = "My Blog"; … | |
Re: #1.) use a remote style sheet.. (/css/style.css) #2.) Don't put everything in php as it makes load time slower... even if it a mili second | |
Re: The only thing i can think of, and the easiest thing for you, would be to make a small php script to display all the rows where ââ is true and then just use a form to edit them.. Would prob take a good 1-2 hours depending on the size … | |
Re: add [CODE]float: right;[/CODE] to the content and [CODE]float: left;[/CODE] to the dropdown menu Try that... | |
Re: [url]http://www.w3schools.com/php/php_mysql_select.asp[/url] [CODE]echo mysql_query("SELECT name FROM members2 WHERE user = 'admin'");[/CODE] to [CODE]$result = mysql_query("SELECT name FROM members2 WHERE user = 'admin'"); while($row = mysql_fetch_array($result)) { echo $row['user'] . " " . $row['pass']; echo "<br />"; } mysql_close($con); ?>[/CODE] ect | |
![]() | Re: Snip im an idiot.. nvm lol |
Re: hey, if you want me to i can make you a custom html5 video player like your asking, just leave a link to my design site on your website | |
Re: That is extremely demanding, You should think about hiring someone to do this as nobody is going to write the whole damn website for you (this basically sounds like a whole website) Go try hiring someone, i would do it if you gave me more detail on what you need … | |
Re: theres like cc.cz or something like that... You can't really get a free domain... | |
Re: What are you asking for? Are you trying to setup a mysql database for that? | |
Re: It's not windows, its the screen size. The background image is fixed to resize as the browser gets smaller so its always in the top right hand corner.. | |
Ok so I have decided to write a small tutorial to help the newbys out there! Here it goes! [B]WARNING! I AM NOT DONE! I will finish the rest tomorrow when i wake up.. its 4:03am....[/B] Today we are going to be designing a blog... Here is our blog image. … | |
![]() | Re: Ok so you need to do something along the lines of mysql. Does the webserver have mysql databases? If you want i can write you a script that will insert the stuff into a mysql database and then ill have another script display the results. _-EDIT-_ I'm working on a … ![]() |
Re: its not [CODE]margin: auto;[/CODE] its [CODE]margin:0 auto;[/CODE] to center everything to the middle of the browser | |
Re: Just use a mysql database to store the names, then you can connect to the database, and select a random name.. here is an example of a random i made for a simple video game lotery [CODE]<?php // Echo random $username="db_user"; //enter your database username $password="password"; //enter your db password … | |
Re: Setup a mysql table that has 2 columns, Table A & Table B, then when you use a form to insert the data, have the data that goes in Table A to also go in Table B. Then you can edit Table A without disturbing Table B | |
Re: Did you try it? [CODE]echo "<a href='http://www.website.com/links.php?lc_URL=".$row['ID']."'>Click Here</a>[/CODE] I think you need to do something along the lines of that | |
Re: [url]http://themeforest.net/searches?term=gallery&type=files[/url] There ya go.. gonna cost some $ but not too much | |
I've noticed you have a simple footer in the bottom, and i think it would be a good idea to add facebook, twitter, and rss feed buttons in the bottom right. These wouldn't be for the thread/section your on but for the whole website. I'm sure you have them somewhere … | |
Re: What are you going to use the template for? Just try doing some tutorials on basic web design... net.tutsplus.com is a good start | |
Re: There still is no point in re-inventing the wheel... just use an open source, be a man and spend time looking at the code, and then work on it.. | |
Re: Didn't really look very hard in the script since i haven't slept in 27 hours, but try adding the form directly to the php document.. im sorry im just so tired.. if this doesn't make sense ignore it | |
Re: That's a lot... but i think i can help you... net.tutsplus.com Go check them out, they have several tutorials | |
Re: Have you searched for a wordpress plugin? | |
Re: bryan [at] ggdesigning [dot] com Email me and ill get back to you later, going to bed (2:45 am) | |
Re: You need to use php, but here are some easy tutorials [url]http://net.tutsplus.com/tutorials/php/how-to-create-blog-excerpts-with-php/[/url] [url]http://net.tutsplus.com/tutorials/site-builds/how-to-build-a-maintainable-site-using-cushycms-and-twitter/[/url] Look around You can also look into getting wordpress.. [url]http://wordpress.com[/url] | |
Re: ^ He has it correct, but if your not on a dedicated hosting environment, for example if your on a shared hosting environment, forget it.. the hoster won't let you change the php.ini file, and even if they do.. they will restrict your file upload amount down again. it's set … | |
Re: Here is what i do whenever im doing a sort of template system for clients. Forgive me if there are some errors. [CODE]<!-- Head.php --> <html> <head> <!-- All your head links and stuff --> </head> <!-- End Head.php --> <!-- Header.php --> <body> <h1> This is the header </h1> … | |
Re: Hold on, ill post one in a sec... gotta find it [url]http://net.tutsplus.com/tutorials/php/create-a-signup-form-with-email-confirmation/[/url] Check that out | |
Re: [CODE] mysql_query("UPDATE ue-userfile SET userid = 'The userid' WHERE id = 'the id'"); [/CODE] Is that what you wanted? | |
Re: I'm not sure if this is true, just going off my experience I've only dealt with one customer that wanted me to setup their ssl, and what i had to do was generate a key in the cpanel and do allll this shit.. But in the control panel that you … |
The End.