Jump to content

monika

Members
  • Posts

    33
  • Joined

  • Last visited

    Never

Everything posted by monika

  1. not so good..rather mysqldumper is quiet oke thanx every one for ur help and support thanx fenway for suggestion u really show me some direction
  2. how to dump huge mysql data i need to dump 70-80 mb sql data often.. i tried bigdum but it failed "unable to handel such a huge" .. is there any other way or software that can help me in dumping the sql. p.s i dont wann split the file.. pls guide me
  3. well u r 100% correct..ITS ALL DUE TO SAVING FILE IN utf-8 now i'd saved all as a ANSI n problem is solved.. Thanx all member for your time.. ESp~ Thanx to esukf -- Monika
  4. well i'm saving fine is ascii.. ... I'd never saved file in utf-8 i use editplus..
  5. chk this in your mozilla firefox browser u can see that character... [attachment deleted by admin]
  6. here u'll not see that character but it is their cos that character is making header error [attachment deleted by admin]
  7. heeh... well I'm mistaken.. its only in php page.. well is there any help.. you said it may be due to blank space.. I'd removed all the blank space.. all the code are tight packed.. but still that weired character comes with smiling face.. n makes my face angry...
  8. well in none php page also that character is seen...
  9. error is not a problme..i can handle.. it.. but i dont want that nasty character dispalyed in my every page..even in html. page..
  10. tht works... i alos do same way... but i'd 500 files.. n using that method for that 500 files.. gos... i can't imagine.. is their any other way... can't i stop that charcater..
  11. Do any1 have any idea about this weired character  well every time i save my webpage and browse this  is displayed at top.. but when i chk in notepad or any editor i dont see/find such character..  cos of this i get header error.. [header already sent......]
  12. well the problem was there was no particular data in database so every time i put regno 3030B that error comes.. actualy indatabase there is only3030
  13. <input name="regno" type="text" id="regno" class="formbox" size="16"><BR> <input type="submit" name="Submit" value="Submit" class="formbox"><br> ------------------ <?php $Array["regno"] =addslashes(trim($_POST["regno"])); include("configresult.php"); $Link = mysql_connect($Host, $User, $Password); $Query="SELECT * from $TableName Where regno= $Array[regno]"; $Result= mysql_db_query ($DBName, $Query, $Link); if ($Row = mysql_fetch_array ($Result)){ print (" REG.No: $Row[regno] Class: $Row[class] <p></P>NAME: $Row[firstname] <p></P> Status: $Row[divs] <BR> "); } else { echo '<font size="2" face="Tahoma" font color="#FF0000" font-weight:"Normal"> Sorry, Invalid Registration No! </font>'; } mysql_close ($Link); ?> ----------- error Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /searchresults.php on line 24 Sorry, Invalid Registration No!
  14. <FORM NAME="searchresults" METHOD="POST" ACTION="searchresults.php"> <table cellpadding="0" cellspacing="0" style="width: 396px; height: 1px"> <!-- MSTableType="layout" --> <tr> <td style="height: 16px"> <div class="colum_right_border_bottom" style="width: 535px; height: 6px"> </div> </td> </tr> </table> <p align="center"><font face="Arial" style="font-size: 8pt"><strong>Search your Examination Result</strong></font></p> <p style="height: 98px"><font face="Verdana" style="font-size: 8pt">Enter your Reg. No</font><font style="font-size: 8pt">.</font> <input name="Array[regno]" type="text" id="Array[regno]" class="formbox" size="16"><BR> <input type="submit" name="Submit" value="Submit" class="formbox"><br> <font face="Arial" style="font-size: 8pt" color="#8A8A8A"><br> Enter your Registration Number and press the Submit button.</font></p> </FORM>
  15. Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in searchresults.php on line 25 Sorry, Invalid Registration No! SELECT * from results Where regno=
  16. <?php $Array["regno"] =trim ($Array["regno"]); include("configresult.php"); $Link = mysql_connect($Host, $User, $Password); $Query="SELECT * from $TableName Where regno= $Array[regno]"; $Result= mysql_db_query ($DBName, $Query, $Link); if ($Row = mysql_fetch_array ($Result)){ print (" REG.No: $Row[regno] Class: $Row[class] <br />NAME: $Row[firstname] <br /> Status: $Row[divs] <BR> "); } else { echo '<font size="2" face="Tahoma" font color="#FF0000" font-weight:"Normal"> Sorry, Invalid Registration No! </font>'; } mysql_close ($Link); ?> ------ Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource .....on line 25 What's wrong with this code.. i'm unable to figure out... day ago it was working fine.
  17. no no i'm not only talking about deleting... i want to add additional entry too for that do i've to write each time code manually? if yes then that doesnot seems that i'm using php thus is there a way, in which administration can add additional announcement as per the requirement. p.s : each announce has their own picture.
  18. how to add/delete additional announcement_including pic according to requirement from browser..
  19. I guess the above code is my atempt...you dont have to be that harsh. I was just asking help... well I made that graphic-pic just to explain in wide way....... the above code [add.php] can submit announcemet and [view.php] is able to display.. now i'm wodering how to add image through browse button and how to add/delete additional announcement according to requirement from browser.. is my way of asking help wrong.. i appologies.. I"m totally new to php.. else i would not have come here.. for help... i'm very sad bye by your harsh dialogue..... thanx for hurting me..
  20. i'm trying to built simillar like this page. can anyone help me.. Below code is able to dispaly the announcement but i'm not able make rest 1) announce edit/delete/add 2) photo upload/delete [admin section] 3) photo dispaly in view page.. 4) add/remove additional announcement.. [admin section] ------add.php--------- <?php if((isset($act)) && ($act=="action")){ $dates=date("Y-m-d"); echo "<div class=text>Data successfully updated on ". $dates. "<br> please wait while your browser redirects you to the main admin page.....</div>"; $sql=mysql_query ("update announcement set date='$dates', title3='" . mysql_real_escape_string($announce1) . "', text3='" . mysql_real_escape_string($detail1) . "'"); ?> ------------------view.php-------------- <div style="padding: 15px 30px 15px 55px"> <b><?php echo $data->title; ?></b> <br> <?php echo $data->text;?> </div>
  21. yapee ur write... "'. mysql_real_escape_string($_variable_) ."' this slove the problemm.. ya magic quotes yekh :-X Thanx once again...
  22. well help me fren.. i'm totally confused... how to trick that magic quotes...
  23. // Reverse magic_quotes_gpc/magic_quotes_sybase effects on those vars if ON if(get_magic_quotes_gpc()) { $detail1 = stripslashes($_POST['text']); $announce2 = stripslashes($_POST['title1']); } else { $detail1 = $_POST['text']; $announce2 = $_POST['title1']; } if(get_magic_quotes_gpc()) { $detail2 = stripslashes($_POST['text1']); $announce3 = stripslashes($_POST['title2']); } else { $detail2 = $_POST['text1']; $announce3 = $_POST['title12']; } if(get_magic_quotes_gpc()) { $detail3 = stripslashes($_POST['text2']); $announce4 = stripslashes($_POST['title3']); } else { $detail3 = $_POST['text2']; $announce4 = $_POST['title3']; } // is that ok.. i dont knw..
  24. well ya first into mysql and then it decoe to browser..
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.