Jump to content

sushant_d84

Members
  • Posts

    41
  • Joined

  • Last visited

    Never

Everything posted by sushant_d84

  1. Hi You can also go for JavaScript HTML css based Calender system See the attached Image !!!!!!!! Regards Sushant Danekar [attachment deleted by admin]
  2. Hi you can use 1) Redirection using header function 2) You can use the JavaScript for redirecting 3) You can use the include function for including next/other php page in current page.!!! Try this and let me know whethere this works for you!? Regards Sushant Danekar
  3. For your Info.... Your Query should contain the clause as LIMIT 0,20 select * from tab1 LIMIT 0,20 for next page u r query should be select * from tab1 LIMIT 21,39 and so on... Lets try this and let me know if this useful for you... Regards Sushant
  4. Goto file PHP.ini and find the directive there... register_globals. try to change its setting that is register_globals=Off/On and restart everthing ... and check it out...... If solved .....let me know Regards Sushant
  5. CONFIRM ONE THING is the statement session_start() is present at the top of all your pages? confirm this once
  6. Humm wow the Topic is Interested . Now we have the graph for PHP domains and IPS. If we can find the Graph of .NET and JAVA then we can guess the some good reason... I guess pepople like opensourceness everthing is free. and may be strategy got changed ,, may be because of features of ASP.net etc... what u people thing Please let me know Regards Sushant
  7. Initiallise All u r variables first
  8. Thats Gr8 ... I was also thinking for that Idea
  9. hey Just Insert this code before the end of Body so u r problem get solved <script> document.title="This is Title " </script>
  10. All u r Programing Files.. should not have 777 permission........... Also U r important files should be In the folder called "PRIVATE" So that files will not be accessed from doc_root folder.......... Also Keep the .htacess file in Each directory with some specification
  11. Well ... May be this i usefull for u ...... First create the Index on the fields which are IMPs.. like dauserid entitybuktiID=1 domID
  12. Hey ........... There are number off tools available for this type conversion just search by "Mysql to MS-Acess conversion" u will get lots of stuff Regards Sushant
  13. source (\.) Execute an SQL script file. Takes a file name as an argument. mysql> \. c:\ssd.txt Try this out........ Regards Sushant
  14. Hey.. I am not getting u r problem exactly .. but I Guess u r problem will get solved using this function "substr" let me know if this help u Regards Sushant
  15. Can u try this string ============== 'REPLACE INTO info_comments (Id, Text, isOn) VALUES (1, "'.mysql_escape_string($aboutus).'", "'.$isOn.'")' ==================
  16. Hi... U actually need to rename each filed See the code as below ........... Changing ID to ID1 ALTER TABLE `employee` CHANGE `id` `id1` int not null auto_increment primary key Changin NAME to ID ALTER TABLE `employee` CHANGE `name` `id` int not null auto_increment primary key CHaning ID1 to Name ALTER TABLE `employee` CHANGE `id1` `name` varchar (20) not null, Like this U need to do .. So that u r data will not lost Regards Sushant
  17. PEAR has the special class for Paging and for Naviagtion.. Hunt it It will also help to solve the problem
  18. Hi there, When file get uploaded.. it goes the Temp Directory of the server. the file information is available in server variable $_FILES. Open the Help doc for $_FILES u will get all the info about uploaded file(s)... there also one more function move_uploaded_file .....which moves the uploaded file from Temp directory to specified destination location on server... That Destination path u can save in the Database. Use GD library for resizing the image...there are function available under GD library for resizing images....
  19. YES THAT IS CORRECT.... also try to use the function isset($_SESSION['urVarialbe'])
×
×
  • 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.