Search:
Type: Posts; User: DARTHTAMPON
Search :
Search took 0.02 seconds.
It must be something I cant see. It is driving me nuts.
I have these 2 values in a form
<select name="existingPlayer[]" multiple="true" >
<?php
$query = "edit";...
I have a parachat chatroom on my board. I want to put the board on display at a conference that I am going to but I do not want the users to be able to participate in the chat.
So my first...
I have this query
insert into john_tm_cards
(user_id,
cyear,
cset,
number,
player,
OK so the HTML MAX_FILE_SIZE seems to not send filesize information over for files that are to large.
the vardump
array(2) { ["front1"]=> array(5) { ["name"]=> string(5) "2.jpg" ["type"]=> string(0) "" ["tmp_name"]=> string(0) "" ["error"]=> int(2) ["size"]=> int(0) } ["back1"]=> array(5) {...
so I have this code
<script type="text/javascript">
window.setTimeout( "loadXMLDoc();", 60000 );
function loadXMLDoc()
{
/*
thanks,
The part that was killing me was the "/" in the closing script tag. That said nothing loads so I will take your advice and see what happens. Thank you so much for helping
Im almost embarrassed to ask this, but no matter what I do, I continue to get the same error.
document.getElementById('end').innerHTML= "<script language=\"JavaScript\"...
I have this list
John Doe
Fred Smith FT
Mickey Mouse ERR more stuff
John Jacob Heimer AARP
I need to turn it into an array that looks like this
array("John Doe","")
I have a few DB records that look line this
John Doe
Fred Smith FT
Mickey Mouse ERR more stuff
what I need is to split these records up On the part that has more than 2 capital letters
...
according to the documentation the pagemethod stuff should be generated with this line of code
<asp:scriptmanager id="ScriptManager1" runat="server" EnablePageMethods="true" />
Most of this...
So I am trying to make a call to a serverside function.
the html
<script type="text/javascript">
function filterDBResults(variable)
{
So I am trying to make a call to a serverside function.
the html
<script type="text/javascript">
/// <reference name="MicrosoftAjax.js"/>
function filterDBResults(variable)
I have this sp
create procedure test()
DEFINE minRelease INTEGER;
DEFINE currentRelease INTEGER;
DEFINE box varchar(25);
DEFINE boxes varchar(200);
You can install web site statistic software on your web server or use Google Analytics.
http://www.google.com/analytics/#utm_campaign=en&utm_source=en-webmaster_central&utm_medium=et
Also if I...
research opening and reading a file. Then take a look at the split command in perl. You should be able to accomplish this in less than 10 lines of code.
fixed above, see the lines marked with a *
why are you using an int to store a phone number? Are you planning on doing any math with them?
4294967295 I believe is an error return code, for tying to stick to big of a value into your...
you could also use date("i:s", $yourdate); I believe. Untested but heres some documentation
http://us3.php.net/date
<option value="<?php echo $key?>" <?php echo $dbAccountId==$key ? "selected=\"selected\"" : null?>><?php echo $account?></option>
Not sure how much it matters but selected="selected" is the wc3...
why not try somthing like this
<?php
$query = "select * from table";
$results = //results from your db
foreach($row in mysql_fetch_assoc($results))
{
echo...
solution found. In the php.ini file
;extension=simplexml.so
needed to be changed to
extension=simplexml.so
<?php
if ((@$_GET['page'] != 'home' && @$_GET['page'] != 'add' && @$_GET['page'] != 'remove' && @$_GET['page'] != 'all') && !$_GET['page'])
$page = "none";
else
$page = $_GET['page'];...
Are you on a hosted account?
Do you have phpmyadmin in your control panel?