Forum: PHP Feb 29th, 2008 |
| Replies: 11 Views: 983 Yeah, or we can just email back and forth. My email's takarne124@live.com. That way we're not struggling to catch each other online at the same time. |
Forum: PHP Feb 29th, 2008 |
| Replies: 11 Views: 983 Hey, no problem. I'm just doing this in my free time. It's my first time tackeling something this big on my own. I could use a partner to help me out in their spare time if anyone's willing. If not,... |
Forum: PHP Feb 29th, 2008 |
| Replies: 10 Views: 4,462 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... |
Forum: PHP Feb 29th, 2008 |
| Replies: 11 Views: 983 Sorry to bring this back on you guys. I've got some more code that I need to be double checked. I'm hoping that I've done everything right... please note that I'm going to have just about everything... |
Forum: PHP Feb 28th, 2008 |
| Replies: 7 Views: 884 What you're saying is true. The page will have to be scrolled in some way.
One way that you can get the code to display without having to scroll down the entire page is by using the... |
Forum: PHP Feb 28th, 2008 |
| Replies: 6 Views: 612 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... |
Forum: PHP Feb 27th, 2008 |
| Replies: 55 Views: 2,725 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.
includes/sessions.php
<?php... |
Forum: PHP Feb 27th, 2008 |
| Replies: 11 Views: 983 I found what you're talking out.
Corrected:
line #66 from
<td width="25%"><?php echo('<img src="'.$monster['monster_img']'" alt="'.$monster_name'">'); ?></td>
to
<td width="25%"><?php... |
Forum: PHP Feb 27th, 2008 |
| Replies: 11 Views: 983 Ok, thanks for the help with index.php. I've changed that so that the HTML isn't echoed, and the mysql_guery() was correct.
I'm starting on functions.php, and here's what I have so far.
... |
Forum: PHP Feb 26th, 2008 |
| Replies: 11 Views: 983 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?
<?php
/*
index.php
created by Suetan... |
Forum: PHP Feb 26th, 2008 |
| Replies: 3 Views: 1,346 Here's a simple redirect script that you should be able to implement into your program:
if ($user->data['is_registered'])
{
redirect(append_sid("{$phpbb_root_path}index.$phpEx"));
}
... |
Forum: PHP Feb 26th, 2008 |
| Replies: 17 Views: 1,286 Why don't you try it something like this:
<html>
<head>
<title>Cycle Tracks Portal</title>
<style type="text/css" media="all">@import "images/style.css";
</style>
<link rel="alternate"... |
Forum: PHP Feb 8th, 2008 |
| Replies: 3 Views: 3,278 <?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
... |
Forum: PHP Feb 8th, 2008 |
| Replies: 8 Views: 5,453 Try this:
<?php
$i = 0;
$image_id = '';
$image_path = '';
$td = 0;
echo('<tr>');
while($i <= 10) |
Forum: PHP Feb 8th, 2008 |
| Replies: 8 Views: 5,453 This is how phpBB 3 gets images. Maybe it'll help you out.
/**
* Get user avatar
*
* @param string $avatar Users assigned avatar name
* @param int $avatar_type Type of avatar
* @param string... |
Forum: PHP Feb 7th, 2008 |
| Replies: 20 Views: 5,434 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... |