473,405 Members | 2,421 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

Site Check, PLEASE!

I am using a PHP calendar with MySQL backend. For some reason, when you
click on an event in the calendar (which brings up a pop-up window),
there is a scrambled mess before the description. I have deleted the
tables and recreated them, but this has not solved the problem. Could
someone take a quick look at my site and help me out? It's at:
http://dcavello.phenominet.com/calendar

Thanks!
Ryan
--
To reply, please remove your robe.

Jul 19 '05 #1
8 2361

"Ryan Sullivan" <rp******@yourrobe.wideopenwest.com> wrote in message
news:a7********************@wideopenwest.com...
I am using a PHP calendar with MySQL backend. For some reason, when you
click on an event in the calendar (which brings up a pop-up window),
there is a scrambled mess before the description. I have deleted the
tables and recreated them, but this has not solved the problem. Could
someone take a quick look at my site and help me out? It's at:
http://dcavello.phenominet.com/calendar

Thanks!
Ryan
--
To reply, please remove your robe.


I think I can see the junk you are refering to - First off - you have a
table tag that is not closed correctly (you have /TABLE> instead of
</TABLE>).... Second, the junk you are getting - I was just wondering if it
had anything to do with a dynamic image being dumped and some partial header
or something? Or some debuging code that you have forgotten to remove?

I got a U some other character, followed by an F/TABLE>

Also... dunno if this might help some... I had a look at the source code of
the html behind
http://dcavello.phenominet.com/calendar/

and found that you use PHP SessionIDs...

<!-- form tags must be outside of <td> tags -->
<form name="monthYear"><input type="hidden" name="PHPSESSID"
value="f153c9852e05caca99442353bc05fedf" />

I'm wondering if you really wanted to have the /> at the end of the <INPUT>
tag?

Anyway... hope something above helps you...

laters
randelld
Jul 19 '05 #2

"Ryan Sullivan" <rp******@yourrobe.wideopenwest.com> wrote in message
news:a7********************@wideopenwest.com...
I am using a PHP calendar with MySQL backend. For some reason, when you
click on an event in the calendar (which brings up a pop-up window),
there is a scrambled mess before the description. I have deleted the
tables and recreated them, but this has not solved the problem. Could
someone take a quick look at my site and help me out? It's at:
http://dcavello.phenominet.com/calendar

Thanks!
Ryan
--
To reply, please remove your robe.


I think I can see the junk you are refering to - First off - you have a
table tag that is not closed correctly (you have /TABLE> instead of
</TABLE>).... Second, the junk you are getting - I was just wondering if it
had anything to do with a dynamic image being dumped and some partial header
or something? Or some debuging code that you have forgotten to remove?

I got a U some other character, followed by an F/TABLE>

Also... dunno if this might help some... I had a look at the source code of
the html behind
http://dcavello.phenominet.com/calendar/

and found that you use PHP SessionIDs...

<!-- form tags must be outside of <td> tags -->
<form name="monthYear"><input type="hidden" name="PHPSESSID"
value="f153c9852e05caca99442353bc05fedf" />

I'm wondering if you really wanted to have the /> at the end of the <INPUT>
tag?

Anyway... hope something above helps you...

laters
randelld
Jul 19 '05 #3
Hi - this is the HTML code I saw in the popup window - seems that garbage is
being generated:

*--
<tr><td class="display_txt_bg">

<table cellspacing="1" cellpadding="1" border="0" width="100%">

<tr>

<td><span class="display_txt">Pieces of April Premiere at the Arena Grand
Theater.</span></td>

</tr>

<tr>

<td align="right"><span class="display_user">Posted by: default user</td>

</tr>

<tr>

<td align="right"></td>

</tr>

UsF/table>
*garbage is here*

</td></tr>

</table>

*--

So I would suggest you check the php that is generating the html - seems
that something is getting mangled, as you say, but without viewing your php
code - its kinda hard to debug it from here .
mondo regards [Bill]
--
William Sanders / Electronic Filing Group Remove the DOT BOB to reply via
email.
FREE LONG DISTANCE -> mailto:ex********@efgroup.net
Free Satellite Receivers and installation ->
http://www.vmcsatellite.com/?aid=58456
mySql / VFP / MS-SQL
"Ryan Sullivan" <rp******@yourrobe.wideopenwest.com> wrote in message
news:a7********************@wideopenwest.com...
I am using a PHP calendar with MySQL backend. For some reason, when you
click on an event in the calendar (which brings up a pop-up window),
there is a scrambled mess before the description. I have deleted the
tables and recreated them, but this has not solved the problem. Could
someone take a quick look at my site and help me out? It's at:
http://dcavello.phenominet.com/calendar

Thanks!
Ryan
--
To reply, please remove your robe.

Jul 19 '05 #4
Thanks, Bill. I've actually posted the PHP files if you care to take a
look at them. I'm a PHP/MySQL newbie, so I'm in over my head!

http://dcavello.phenominet.com/php/createtables.php.txt
http://dcavello.phenominet.com/php/eventdisplay.php.txt
http://dcavello.phenominet.com/php/eventform.php.txt
http://dcavello.phenominet.com/php/eventsubmit.php.txt
http://dcavello.phenominet.com/php/functions.php.txt
http://dcavello.phenominet.com/php/index.php.txt
http://dcavello.phenominet.com/php/useradmin.php.txt

Thanks,
Ryan

swdev1 wrote:
Hi - this is the HTML code I saw in the popup window - seems that garbage is
being generated:

*--
<tr><td class="display_txt_bg">

<table cellspacing="1" cellpadding="1" border="0" width="100%">

<tr>

<td><span class="display_txt">Pieces of April Premiere at the Arena Grand
Theater.</span></td>

</tr>

<tr>

<td align="right"><span class="display_user">Posted by: default user</td>

</tr>

<tr>

<td align="right"></td>

</tr>

UsF/table>
*garbage is here*

</td></tr>

</table>

*--

So I would suggest you check the php that is generating the html - seems
that something is getting mangled, as you say, but without viewing your php
code - its kinda hard to debug it from here .
mondo regards [Bill]
--
William Sanders / Electronic Filing Group Remove the DOT BOB to reply via
email.
FREE LONG DISTANCE -> mailto:ex********@efgroup.net
Free Satellite Receivers and installation ->
http://www.vmcsatellite.com/?aid=58456
mySql / VFP / MS-SQL
"Ryan Sullivan" <rp******@yourrobe.wideopenwest.com> wrote in message
news:a7********************@wideopenwest.com...
I am using a PHP calendar with MySQL backend. For some reason, when you
click on an event in the calendar (which brings up a pop-up window),
there is a scrambled mess before the description. I have deleted the
tables and recreated them, but this has not solved the problem. Could
someone take a quick look at my site and help me out? It's at:
http://dcavello.phenominet.com/calendar

Thanks!
Ryan
--
To reply, please remove your robe.


--
To reply, please remove your robe.

Jul 19 '05 #5
Thanks, Bill. I've actually posted the PHP files if you care to take a
look at them. I'm a PHP/MySQL newbie so I'm in over my head!

Thanks,
Ryan

http://dcavello.phenominet.com/php/createtables.php.txt
http://dcavello.phenominet.com/php/eventdisplay.php.txt
http://dcavello.phenominet.com/php/eventform.php.txt
http://dcavello.phenominet.com/php/eventsubmit.php.txt
http://dcavello.phenominet.com/php/functions.php.txt
http://dcavello.phenominet.com/php/index.php.txt
http://dcavello.phenominet.com/php/useradmin.php.txt

swdev1 wrote:
Hi - this is the HTML code I saw in the popup window - seems that garbage is
being generated:

*--
<tr><td class="display_txt_bg">

<table cellspacing="1" cellpadding="1" border="0" width="100%">

<tr>

<td><span class="display_txt">Pieces of April Premiere at the Arena Grand
Theater.</span></td>

</tr>

<tr>

<td align="right"><span class="display_user">Posted by: default user</td>

</tr>

<tr>

<td align="right"></td>

</tr>

UsF/table>
*garbage is here*

</td></tr>

</table>

*--

So I would suggest you check the php that is generating the html - seems
that something is getting mangled, as you say, but without viewing your php
code - its kinda hard to debug it from here .
mondo regards [Bill]
--
William Sanders / Electronic Filing Group Remove the DOT BOB to reply via
email.
FREE LONG DISTANCE -> mailto:ex********@efgroup.net
Free Satellite Receivers and installation ->
http://www.vmcsatellite.com/?aid=58456
mySql / VFP / MS-SQL
"Ryan Sullivan" <rp******@yourrobe.wideopenwest.com> wrote in message
news:a7********************@wideopenwest.com...
I am using a PHP calendar with MySQL backend. For some reason, when you
click on an event in the calendar (which brings up a pop-up window),
there is a scrambled mess before the description. I have deleted the
tables and recreated them, but this has not solved the problem. Could
someone take a quick look at my site and help me out? It's at:
http://dcavello.phenominet.com/calendar

Thanks!
Ryan
--
To reply, please remove your robe.


--
To reply, please remove your robe.

Jul 19 '05 #6
Hi - this is the HTML code I saw in the popup window - seems that garbage is
being generated:

*--
<tr><td class="display_txt_bg">

<table cellspacing="1" cellpadding="1" border="0" width="100%">

<tr>

<td><span class="display_txt">Pieces of April Premiere at the Arena Grand
Theater.</span></td>

</tr>

<tr>

<td align="right"><span class="display_user">Posted by: default user</td>

</tr>

<tr>

<td align="right"></td>

</tr>

UsF/table>
*garbage is here*

</td></tr>

</table>

*--

So I would suggest you check the php that is generating the html - seems
that something is getting mangled, as you say, but without viewing your php
code - its kinda hard to debug it from here .
mondo regards [Bill]
--
William Sanders / Electronic Filing Group Remove the DOT BOB to reply via
email.
FREE LONG DISTANCE -> mailto:ex********@efgroup.net
Free Satellite Receivers and installation ->
http://www.vmcsatellite.com/?aid=58456
mySql / VFP / MS-SQL
"Ryan Sullivan" <rp******@yourrobe.wideopenwest.com> wrote in message
news:a7********************@wideopenwest.com...
I am using a PHP calendar with MySQL backend. For some reason, when you
click on an event in the calendar (which brings up a pop-up window),
there is a scrambled mess before the description. I have deleted the
tables and recreated them, but this has not solved the problem. Could
someone take a quick look at my site and help me out? It's at:
http://dcavello.phenominet.com/calendar

Thanks!
Ryan
--
To reply, please remove your robe.

Jul 19 '05 #7
Thanks, Bill. I've actually posted the PHP files if you care to take a
look at them. I'm a PHP/MySQL newbie, so I'm in over my head!

http://dcavello.phenominet.com/php/createtables.php.txt
http://dcavello.phenominet.com/php/eventdisplay.php.txt
http://dcavello.phenominet.com/php/eventform.php.txt
http://dcavello.phenominet.com/php/eventsubmit.php.txt
http://dcavello.phenominet.com/php/functions.php.txt
http://dcavello.phenominet.com/php/index.php.txt
http://dcavello.phenominet.com/php/useradmin.php.txt

Thanks,
Ryan

swdev1 wrote:
Hi - this is the HTML code I saw in the popup window - seems that garbage is
being generated:

*--
<tr><td class="display_txt_bg">

<table cellspacing="1" cellpadding="1" border="0" width="100%">

<tr>

<td><span class="display_txt">Pieces of April Premiere at the Arena Grand
Theater.</span></td>

</tr>

<tr>

<td align="right"><span class="display_user">Posted by: default user</td>

</tr>

<tr>

<td align="right"></td>

</tr>

UsF/table>
*garbage is here*

</td></tr>

</table>

*--

So I would suggest you check the php that is generating the html - seems
that something is getting mangled, as you say, but without viewing your php
code - its kinda hard to debug it from here .
mondo regards [Bill]
--
William Sanders / Electronic Filing Group Remove the DOT BOB to reply via
email.
FREE LONG DISTANCE -> mailto:ex********@efgroup.net
Free Satellite Receivers and installation ->
http://www.vmcsatellite.com/?aid=58456
mySql / VFP / MS-SQL
"Ryan Sullivan" <rp******@yourrobe.wideopenwest.com> wrote in message
news:a7********************@wideopenwest.com...
I am using a PHP calendar with MySQL backend. For some reason, when you
click on an event in the calendar (which brings up a pop-up window),
there is a scrambled mess before the description. I have deleted the
tables and recreated them, but this has not solved the problem. Could
someone take a quick look at my site and help me out? It's at:
http://dcavello.phenominet.com/calendar

Thanks!
Ryan
--
To reply, please remove your robe.


--
To reply, please remove your robe.

Jul 19 '05 #8
Thanks, Bill. I've actually posted the PHP files if you care to take a
look at them. I'm a PHP/MySQL newbie so I'm in over my head!

Thanks,
Ryan

http://dcavello.phenominet.com/php/createtables.php.txt
http://dcavello.phenominet.com/php/eventdisplay.php.txt
http://dcavello.phenominet.com/php/eventform.php.txt
http://dcavello.phenominet.com/php/eventsubmit.php.txt
http://dcavello.phenominet.com/php/functions.php.txt
http://dcavello.phenominet.com/php/index.php.txt
http://dcavello.phenominet.com/php/useradmin.php.txt

swdev1 wrote:
Hi - this is the HTML code I saw in the popup window - seems that garbage is
being generated:

*--
<tr><td class="display_txt_bg">

<table cellspacing="1" cellpadding="1" border="0" width="100%">

<tr>

<td><span class="display_txt">Pieces of April Premiere at the Arena Grand
Theater.</span></td>

</tr>

<tr>

<td align="right"><span class="display_user">Posted by: default user</td>

</tr>

<tr>

<td align="right"></td>

</tr>

UsF/table>
*garbage is here*

</td></tr>

</table>

*--

So I would suggest you check the php that is generating the html - seems
that something is getting mangled, as you say, but without viewing your php
code - its kinda hard to debug it from here .
mondo regards [Bill]
--
William Sanders / Electronic Filing Group Remove the DOT BOB to reply via
email.
FREE LONG DISTANCE -> mailto:ex********@efgroup.net
Free Satellite Receivers and installation ->
http://www.vmcsatellite.com/?aid=58456
mySql / VFP / MS-SQL
"Ryan Sullivan" <rp******@yourrobe.wideopenwest.com> wrote in message
news:a7********************@wideopenwest.com...
I am using a PHP calendar with MySQL backend. For some reason, when you
click on an event in the calendar (which brings up a pop-up window),
there is a scrambled mess before the description. I have deleted the
tables and recreated them, but this has not solved the problem. Could
someone take a quick look at my site and help me out? It's at:
http://dcavello.phenominet.com/calendar

Thanks!
Ryan
--
To reply, please remove your robe.


--
To reply, please remove your robe.

Jul 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Targa | last post by:
Ive seen alert scripts triggered by links but I need one that will cover any link or pressing the back/forward buttons. Any such thing? TIA
7
by: Scott M. | last post by:
How can I disable the cross-site scripting check for one particular page of a site?
2
by: Marcus | last post by:
I have seen many posts of people with the same problem as me (attached below), but I have yet to see any solutions posted. Has anyone figured out how to deploy an Asp.net web site to the webserver...
5
by: gerry | last post by:
single machine - W2Kserver , IIS5 , VS.NET 2003 I spent some time struggling with what looked like the dreaded asp.net debugging configuration problem but none of the solutions for this did any...
2
by: dave | last post by:
I am trying to use the Personal Web Site Starter Kit. I am planning on showing my class how easy it is to create a website in VS 2005. Only I am finding it not to be so easy. I am following the...
5
by: Robert | last post by:
I have a series of web applications (configured as separate applications) on a server. There is a main application at the root and then several virtual directories that are independant...
1
by: HackingPSP | last post by:
I saw a lot of requests for a program like this, so I wrote it. Yeah, my site has "PSP software by Auri" but in this case it means "Pretty Sweet Programming" :) There's both a VS2005 add-in and a...
11
by: Suresh.P.R | last post by:
Hi, Through ASP.Net in C# how we can check automatically that the Web Site is up. Or generally through .Net windows application how we can check a particular web site is up. Please inform...
4
by: -Lost | last post by:
I cannot for the life of me remember the site name, but I believe it was the site of one of the regular posters here or perhaps in comp.lang.java.javascript. Anyway... The site in particular...
64
by: Mika | last post by:
Hello, we understand you guys may be able to help. We have a page which has been working great for over a year and gets many hits. However recently something got changed that we cannot seem to...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.