Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~13.7K People Reached
About Me

Freelance Computer technician

PC Specs
Processor: AMD Phenom II x6 Black Edition 1090T @3.2Ghz Motherboard: Asus M4A79XTD EVO RAM: AENEON 2GB…
Favorite Tags

38 Posted Topics

Member Avatar for galiz05
Member Avatar for chandaboy
Member Avatar for Suetan

Okay, so here's the deal: I suck with forms and generating dynamic links. Here's the code that I'm working on [CODE=html]<div class="Normal_P"> <span class="Normal_C"> <form action="<?php getLink("http://www.atouchofmoore.net/certificate_stage3.php" array( <?php[/CODE] [CODE=php]if(mysql_num_rows($r) > 0) { while($d = mysql_fetch_array($r)) { $options .= "\n\t<option value=\"{$d[2]}\">{$d[1]}:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{$d[2]}</option>"; } } for($x=0;$x<$cert_num;$x++) { $cert = ($x+1); $get_data['cert"$x"'] = …

Member Avatar for Suetan
0
207
Member Avatar for sathyasaranya
Member Avatar for oviyarajan

w3schools.com You can also download Microsoft Visual Web Developer Express for free from [url]http://www.microsoft.com/express[/url] and that program has some great guides to help you out. Just remember that HTML alone only does the layout of the content. It does not generate any special effects or manage any data that your …

Member Avatar for desmaksolutions
0
1K
Member Avatar for Jollyyy100

in your form tag, you should be using something like this: [CODE=HTML]<form method="post" action="login.php"> Username: <input type="text" name="username" /><br /> Password: <input type="password" name="password" /><br /> <input type="submit" onclick="this.form.submit" />[/CODE] Then in your login.php file you want something like this: [CODE=PHP] <?php $username = $_post["username"]; $password = $_post["password"]; $sql = …

Member Avatar for Jollyyy100
0
173
Member Avatar for Suetan

Here's my problem. I have a program that integrates HTML with PHP script by ending the PHP, and going with straight HTML code, and then going back to PHP. This should be all well and done, except for the part where after I start the PHP script, it doesn't display …

Member Avatar for diafol
0
573
Member Avatar for Spyzker
Member Avatar for Jollyyy100

As everyone else is telling you, coding the pages yourself is going to be the best way to get what you want. WYSIWYG editors don't like to have things stacked. They tend to go from one straight to the next.

Member Avatar for Suetan
0
137
Member Avatar for samsnov

You could also do something like this: [CODE=PHP] $con = mysql_connect($dbuser, $dbpass, $dbhost, client_flags = 0, new_link = false); if (!con) { echo "Database Error"; die(mysql_error()); } mysql_select_db($dbname, $con); ?> Your search for site form goes here <?php $sql = "SELECT * FROM sites WHERE siteName = '$_GET["siteName"]'"; $result = …

Member Avatar for Suetan
0
107
Member Avatar for trashed

This is how phpBB 3 gets images. Maybe it'll help you out. [CODE=PHP]/** * Get user avatar * * @param string $avatar Users assigned avatar name * @param int $avatar_type Type of avatar * @param string $avatar_width Width of users avatar * @param string $avatar_height Height of users avatar * …

Member Avatar for tips4php
0
2K
Member Avatar for Dani

I'm a devigner with more skills in the development area. I know how to work with Photoshop and Image Ready, but I'm no expert with them. I use PHP with MySQL. I'm currently working on changing the way my personal website works (thanks to Nav33n for helping me with debugging …

Member Avatar for anuj_sharma
2
760
Member Avatar for nikhita

You can't create a database within a database. But you can create new tables within your database that have a different table prefix so that it will work like a different database. All you have to do is make all your tables with a different table prefix. I did this …

Member Avatar for ShawnCplus
0
103
Member Avatar for Geek-Master

[QUOTE=Geek-Master;509785]I would really like for this thread to discuss all aspects of "RPG math" i.e.(Attack, Magic, Defense, Magic Defense, Agility, etc...) So lets start off with Attacking. I am going to dismiss what the targets defense stats are and just think about raw attack power. So what are the elements …

Member Avatar for SlayingSoul
0
2K
Member Avatar for Suetan

Here's my problem. I'm writing a program that has the user input a string. That string is then compared to the values in a string array within a class. Here's a sample of what I'm trying to do (sorry about the spacing. I use tabs, not spaces): This is my …

Member Avatar for Suetan
0
238
Member Avatar for kidprogrammer

I'll check it out, and see what I can come up with to help you out. I'll try debugging it, as well. Please note that my knowledge in C++ is limited, but I'm starting college on March 3rd for video game programming. I'll let you know if I come up …

Member Avatar for kidprogrammer
0
157
Member Avatar for carobee

You can still use JavaScript within PHP and HTML. On the output of your page you're going to want this: [CODE=HTML]<html> <head> <meta name="whatever" content="whatever"> <title>Your Title</title> <link rel="stylesheet" type="text/css" href="style.css"> <script language="JavaScript" type="text/javascript"> scriptstring; </script> </head> <body> your content </body> </html>[/CODE]

Member Avatar for Troy III
0
152
Member Avatar for cavemanlawyer15

I've checked it out, and it looks fine to me. I'm using IE7 with 1024*768 Screen resolution. If you've got it set up so that it's fluid, you might want to make it static. With it having a static width, there shouldn't be a problem due to the user's screen …

Member Avatar for jhample
0
175
Member Avatar for Suetan

I'm just wondering what online stores you guys use to buy new parts. I've already checked out the following places: [LIST][*][url]http://www.tigerdirect.com[/url] [*][url]http://www.newegg.com[/url] (expensive) [*][url]http://www.outletpc.com[/url] [*][url]http://www.geeks.com[/url] [/LIST] If you guys have any other places that'll help me shorten my search time please let me know.

Member Avatar for shannygeek
0
166
Member Avatar for Venom Rush

Since you're planning on having this be text based w/o a turn system I'd use either C++ or PHP. You can have PHP work in a live environment with seemless refreshes, but it's difficult to do. C++ is designed better for this type of thing, but PHP is based off …

Member Avatar for PirateTUX
0
292
Member Avatar for indiansoil

[URL="http://www.awardspace.com"]Awardspace.com[/URL] is pretty decent, I know that they support PHP. I'm not sure about ASP though. There's no banner ads or anything, and they're a free host. I use them, myself.

Member Avatar for Suetan
0
699
Member Avatar for drlego

I see how the links will work, but where are you pulling the information from the database. You're going to need an SQL command to pull the information so that it goes into your link. It could be something simple like: [CODE=PHP] <?php $sql = "SELECT 'site_name, link_text, url' FROM …

Member Avatar for somedude3488
0
2K
Member Avatar for Suetan

This is just something that I'm working on for my own website. Could someone please check this over real quick to see if I have any major errors in it? [CODE=PHP]<?php /* index.php created by Suetan Start Date: Wednesday January 9, 2008 Project: RPGCMS Version: 0.0.1a */ define('IN_RPGCMS', true); $root …

Member Avatar for Suetan
0
204
Member Avatar for carobee

[QUOTE=nav33n;547619]Say if the output is of 2 pages. Then how can you output everything in 1 page ? You can specify the width and height of the page, but if the output is more, I dont think you can avoid scroll.[/QUOTE] What you're saying is true. The page will have …

Member Avatar for Suetan
0
151
Member Avatar for lordx78

When one is lost, seek help... When help is lost, refer to Open Source code that works (^_^) This is how phpBB does their sessions in phpBB 2.0.23. [COLOR="Red"]includes/sessions.php[/COLOR] [CODE=PHP] <?php /*************************************************************************** * sessions.php * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB …

Member Avatar for lordx78
0
513
Member Avatar for lordx78

Here's a simple redirect script that you should be able to implement into your program: [code=PHP]if ($user->data['is_registered']) { redirect(append_sid("{$phpbb_root_path}index.$phpEx")); } login_box(request_var('redirect', "index.$phpEx")); [/code] And here's the function to go with it. [CODE=PHP]function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = false, $s_display = true) { global $db, …

Member Avatar for lordx78
0
71
Member Avatar for lordx78

[QUOTE=lordx78;543982][code=php] <html> <head> <title>Cycle Tracks Portal</title> <style type="text/css" media="all">@import "images/style.css"; </style> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="rss/" /> <?php $date_curr = date('l dS F Y'); ?> </head> <body> <div class="content"> <div class="topmenu"> <div class="date_"> <?php echo $date_curr; ?> </div> </div> [/code] Still not working.[/QUOTE] Why don't you try it something …

Member Avatar for nav33n
0
163
Member Avatar for SAMSEIED
Re: Html

You might want to try this: replace this [CODE=HTML]<P ALIGN=CENTER><img src="house.jpg"></P>[/CODE] with this [CODE=XHTML]<br /><img src="http://{URL_OF_YOUR_PAGE}/house.jpg" align="center" alt=""><br />[/CODE] Since XHTML is the W3C standard now, you might want to convert it to XHTML. It's not hard to do at all. If you need to learn XHTML, go to [URL]http://www.w3schools.com[/url] …

Member Avatar for txwebdesign
0
186
Member Avatar for HOMEUSR

This should help you out. [url]http://windowshelp.microsoft.com/Windows/en-US/help/89adebd1-06a4-43ec-a33b-5964b436f96d1033.mspx[/url] I don't have Vista, and I don't know all the ways around everything in it. That's why I'm referring you to the Microsoft site.

Member Avatar for HOMEUSR
0
86
Member Avatar for Morty222

[CODE=PHP] <?php $sql = "SELECT 'p.player_id, p.last_name, p.first_name, s.sport, p.grad_yr, l.city, l.state, p.gender' FROM ' . PLAYER_TABLE . ' p, ' . SPORT_TABLE . ' s, ' . LOCAL_TABLE . ' l WHERE p.last_name = $ln AND p.first_name = $fn AND s.sport = $ps AND l.city = $cy AND l.state …

Member Avatar for jonesc5
0
68
Member Avatar for alieya

Going by the images that were in your attachment, it looks to me like your CSS files weren't uploaded to the server. I'm saying this because you have all the images that would be in the page from hard coding, but your background images aren't showing up. Try uploading your …

Member Avatar for alieya
0
145
Member Avatar for Disque

Try this: [list=1][*]Close all browser windows [*]Click START [*]Click on Run [*]Type in "cmd" without the quotes [*]Command prompt will open [*]Type the following in order [list=1][*]ipconfig [*]ipconfig/release [*]ipconfig/renew [/list] [*]Close command prompt (ALT+F4) [*]Try loading several webpages at the same time while connected to AIM [/list] If that doesn't …

Member Avatar for Suetan
0
87
Member Avatar for valuum

When you formatted your computer, you got rid of all the information that was on it. So the computer won't be able to call up the network information. Get all of your network information from another computer that's on your network, and then you'll have to go through the network …

Member Avatar for Suetan
0
139
Member Avatar for Datacomms

A lot of companies don't want their employees going on the internet with their hardware unless it's for work. The best way to save your job is to check your website at home. If you go and mess with company computers, then there's a very good chance that you will …

Member Avatar for DimaYasny
0
146
Member Avatar for frenchi1966

I agree, the tables would be a better setup than divs. But if you want to stick with the divs, you might want to try this [CODE=HTML]<div style="width:100px;line-height:19px; font-size:11px; font-weight: bold;"> <font align="left"> <a href="{$smarty.const.DOC_ROOT}/livepagerank.php?pr={$PR.PR}" title="{l}Browse pagerank {$PR.PR} links{/l}"><img align="left" src="/images/pr{$PR.PR}.gif" border="0" alt="{l}Browse pagerank {$PR.PR} links{/l}" />{$PR.COUNT|indent}</a> </font> </div> <div …

Member Avatar for ndeniche
0
197
Member Avatar for honey23

Make sure that your parental controls with your ISP are set to let you view all web pages. Allow the sites that you're trying to access to go through your firewall. Do not block any sites with your anti-virus (some anti-virus programs do block webpages that are known to potentially …

Member Avatar for Suetan
0
99
Member Avatar for blade_costic

Can we get some more details into this? If you're using Windows XP, try this [LIST=1] [*]Make sure that nobody is on the phone, and that all phones are working properly, make sure that all phones are properly hung up [*]Right Click on My Computer [*]Choose Properties [*]Click the Hardware …

Member Avatar for Suetan
0
131
Member Avatar for hapiscrap

When I do code I use Notepad, Notepad++ or Wordpad. I've tried it in Word when I first started doing web design, and I had the same problem. If you need to download Notepad++ here's the link. [url]http://sourceforge.net/projects/notepad-plus/[/url] When you download Notepad++, you'll see how it really can help you …

Member Avatar for Suetan
0
130

The End.