Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
66% Quality Score
Upvotes Received
7
Posts with Upvotes
7
Upvoting Members
5
Downvotes Received
4
Posts with Downvotes
2
Downvoting Members
4
2 Commented Posts
~29.4K People Reached
About Me

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!

Favorite Tags

53 Posted Topics

Member Avatar for Jaklins

[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 …

Member Avatar for Bharath_6
0
12K
Member Avatar for stephen_UK

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 …

Member Avatar for Tapioca77
0
510
Member Avatar for G&G Designing

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 …

Member Avatar for dany12
0
153
Member Avatar for blotind

Is it connecting to the database ok? there isn't a password on that connect statement.

Member Avatar for mwasif
0
123
Member Avatar for silvercats
Member Avatar for spivey

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 …

Member Avatar for rpv_sen
0
146
Member Avatar for bubbafunk1

Just do it yourself, They aren't hard to make and there are plenty of tutorials online.

Member Avatar for mschroeder
0
316
Member Avatar for jabeen111

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.

Member Avatar for G&G Designing
0
82
Member Avatar for youvi

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 …

Member Avatar for G&G Designing
0
83
Member Avatar for jacob21

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.

Member Avatar for G&G Designing
0
83
Member Avatar for jabeen111

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 …

Member Avatar for G&G Designing
0
195
Member Avatar for eltonpiko

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 …

Member Avatar for eltonpiko
0
309
Member Avatar for blaaam

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.

Member Avatar for G&G Designing
0
186
Member Avatar for brandon beasley

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 …

Member Avatar for vibhaJ
0
809
Member Avatar for Graycode

Hey, im sorry if this is late, but give me the static webpage files, ill make it into a wordpress theme for you.

Member Avatar for G&G Designing
0
155
Member Avatar for mwenyenia07

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.

Member Avatar for G&G Designing
0
75
Member Avatar for a.emara47

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

Member Avatar for G&G Designing
0
102
Member Avatar for tobeeornot

add [CODE]position: relative; [/CODE] to each of those and they will bump up against eachout

Member Avatar for tobeeornot
0
445
Member Avatar for Kavatae

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 …

Member Avatar for G&G Designing
0
195
Member Avatar for Nahiyan

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"; …

Member Avatar for leakbali
0
204
Member Avatar for gwhite12

#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

Member Avatar for Nahiyan
0
5K
Member Avatar for Sahilsahni

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 …

Member Avatar for smantscheff
0
153
Member Avatar for newbie14

add [CODE]float: right;[/CODE] to the content and [CODE]float: left;[/CODE] to the dropdown menu Try that...

Member Avatar for Arkinder
0
104
Member Avatar for Jaklins

[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

Member Avatar for Jaklins
0
203
Member Avatar for megachip04
Member Avatar for TheNNS

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

Member Avatar for Arkinder
0
186
Member Avatar for mgt

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 …

Member Avatar for mgt
0
122
Member Avatar for fashxfreak

theres like cc.cz or something like that... You can't really get a free domain...

Member Avatar for G&G Designing
-1
115
Member Avatar for yumyam09

What are you asking for? Are you trying to setup a mysql database for that?

Member Avatar for yumyam09
0
90
Member Avatar for msm446

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..

Member Avatar for Arkinder
0
223
Member Avatar for G&G Designing

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. …

Member Avatar for Arkinder
0
162
Member Avatar for bikertz

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 …

Member Avatar for bikertz
0
118
Member Avatar for ptemedia

its not [CODE]margin: auto;[/CODE] its [CODE]margin:0 auto;[/CODE] to center everything to the middle of the browser

Member Avatar for Arkinder
0
455
Member Avatar for gry

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 …

Member Avatar for G&G Designing
1
284
Member Avatar for jacksantho

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

Member Avatar for G&G Designing
0
105
Member Avatar for sellelim05

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

Member Avatar for G&G Designing
0
90
Member Avatar for HelenLF

[url]http://themeforest.net/searches?term=gallery&type=files[/url] There ya go.. gonna cost some $ but not too much

Member Avatar for G&G Designing
0
101
Member Avatar for G&G Designing

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 …

0
104
Member Avatar for nagennaskar

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

Member Avatar for Arkinder
0
89
Member Avatar for raf.fredi

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..

Member Avatar for muzitex
0
109
Member Avatar for kaizokupuffball

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

Member Avatar for cereal
0
156
Member Avatar for DarkBerzerk

That's a lot... but i think i can help you... net.tutsplus.com Go check them out, they have several tutorials

Member Avatar for G&G Designing
0
75
Member Avatar for zagam2
Member Avatar for erik216

bryan [at] ggdesigning [dot] com Email me and ill get back to you later, going to bed (2:45 am)

Member Avatar for G&G Designing
0
87
Member Avatar for jjustin3

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]

Member Avatar for G&G Designing
0
117
Member Avatar for Awah Mohamed

^ 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 …

Member Avatar for G&G Designing
0
225
Member Avatar for manchurianCEO

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> …

Member Avatar for G&G Designing
0
221
Member Avatar for arsala211

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

Member Avatar for G&G Designing
-3
81
Member Avatar for Sorcher

[CODE] mysql_query("UPDATE ue-userfile SET userid = 'The userid' WHERE id = 'the id'"); [/CODE] Is that what you wanted?

Member Avatar for Sorcher
1
81
Member Avatar for loveforfire33

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 …

Member Avatar for G&G Designing
1
128

The End.