User Profile

Collapse

Profile Sidebar

Collapse
robin1983
robin1983
Last Activity: Aug 9 '11, 02:10 PM
Joined: Oct 16 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • robin1983
    replied to Not able to access my url in CakePHP..
    in PHP
    Thanks for the response Markus, I made two changes in my httpd file of apache server under conf folder. the following are the changes which i did and now the everything is working as per expected.
    File Path: C:\wamp\bin\apa che\Apache2.2.1 1\conf

    1. Remove the # before the line LoadModule rewrite_module modules/mod_rewrite.so. Earlier there was # in the front of this line as the line was under comment.

    2.
    Code:
    <Directory
    ...
    See more | Go to post
    Last edited by Markus; Jun 13 '11, 01:22 PM. Reason: Added [code] tags

    Leave a comment:


  • robin1983
    started a topic Not able to access my url in CakePHP..
    in PHP

    Not able to access my url in CakePHP..

    Dear All,

    I have just installed CakePHP 1.3.10. I made all the necessary changes for database name, the value of random alpha numeric also. When I access the CakePhp folder through WAMP, I m getting message

    URL rewriting is not properly configured on your server.

    Help me configure it
    I don't / can't use URL rewriting


    Your tmp directory is writable.

    The FileEngine...
    See more | Go to post

  • robin1983
    replied to how to check IP on the basis of IP Range?
    in PHP
    Thanks for the nice response. Also, I was searching more about on the site I found a tutorial http://pgregg.com/blog/2009/04/php-a...fic-range.html which shows to check the ips. According to the code, i just modify few still I am not able to get the correct result.

    The following are the code that I used

    Code:
    <?php
    
    	include_once "db_connect.inc.php";
    ...
    See more | Go to post

    Leave a comment:


  • robin1983
    started a topic how to check IP on the basis of IP Range?
    in PHP

    how to check IP on the basis of IP Range?

    Hi All,

    I need a help from you guys. I have two tables once containing some list of ip range and other tables which contain the login id and their respective ip address from where they have logged in.

    Now, I want to run a report on the daily basis to check whether the ips in the second table is come to ip range in the first table.

    The table architecture is as follows:
    iprange
    id fromIP...
    See more | Go to post

  • robin1983
    started a topic How to add my own form in joomla!!
    in CMS

    How to add my own form in joomla!!

    I am new user in Joomla. I have learned few things but can any one guide me how to add my own from on the page as well as i want to store the details to the database through form.

    Also, i want to retrieve and display on the site.
    See more | Go to post

  • robin1983
    replied to Converting Mysql data to Excel
    in PHP
    Hi..
    sure, I want to to download the data from mysql to excel. I am able to download with the above code but the problem is that when I download the data into excel the column name of the table is not download. It download the only the data. Eg. table1 contain c1, c2 column
    C1 C2
    abc india
    xyz india

    with the above code, i can download abc, india but not the column name C1 and...
    See more | Go to post

    Leave a comment:


  • robin1983
    started a topic Converting Mysql data to Excel
    in PHP

    Converting Mysql data to Excel

    Dear All,

    I am trying to download the data from mysql to excel (CSV). I get a quote but when i download the data, its fetching the only data but I want to put the column name also.

    Code:
     <?php
    include_once("db_connect.inc.php");
    
    $query  = "SELECT * FROM logintable";
    $result = mysql_query($query) or die('Error, query failed');
    
    $tsv  = array();
    $html
    ...
    See more | Go to post

  • Dear Atil,

    Thank you very very much, now i have used mysql_real_esca pe_string function and its working properly. Thank you very very much for the help.


    I will be back incase i face any more issue.

    With Regards,

    Robin
    See more | Go to post

    Leave a comment:


  • Thanks for quick response and it working properly but i face a new problem if the content that i copy contain the ' ' (single quote), the mysql is facing issue and it wont allowing to insert the data. can you please help me in ignoring the single quote.

    Thanks
    See more | Go to post

    Leave a comment:


  • Insert and fetch value in MYSQL through textarea tag

    Dear All,

    I am facing a problem when i display the data from mysql which i have inserted through textarea tag. I have a form where i copy and paste the details and submitted. But, when i fetch and display on the site, all the text are coming with any line break. its coming all in the same line which changes all the orginal paragraph format.

    Kindly help me how to overcome the same and i can display the same format which...
    See more | Go to post

  • Dear All,

    Thanks for the help and i resolve the issue myself. I have refresh the cookies of my browser, then everything is working fine now.

    With Regards,
    Robin
    See more | Go to post

    Leave a comment:


  • Hi Atli,

    now i have uninstalled the Mysql5 that i have installed separtely and the reinstall wamp, still its not allowing to access the phpmyadmin. the error message is showing as below

    #2003 - Can't connect to MySQL server on 'localhost' (10061)

    kindly help in resolving the issue ...

    Thanks in advance.

    Robin
    See more | Go to post

    Leave a comment:


  • Not able to access phpmyadmin in wamp after installation of MySql 5.1

    Dear All,

    I have problem in phpmyadmin (WAMP). I already worked in phpmyadmin, then I installed Mysql 5.1 in my system. After installation of mysql, separately, its not allowing to access the phpmyadmin showing error message. kindly help me to to access the database and table that i created through wamp not through Mysql.
    Thank you in advance.

    With Regards,
    Robindra Singha
    New Delhi - 65 ...
    See more | Go to post

  • robin1983
    replied to How to allocate in dynamic array in PHP
    in PHP
    thanks for the prompt reply. Now i am able to fetch the colum with total. Still my problem is not solve, as i want to put both the values like the culumn name count of value to an array.
    Code:
    $fetch = mysql_query("SELECT c, count(*) as n_c from abusedetails GROUP BY salesPerson") or die(mysql_error());
    if(isset($fetch)){
        while($row = mysql_fetch_array($fetch) or die(mysql_error())){
            echo $row['c']."=".$row['n_c']."<br>";
    ...
    See more | Go to post

    Leave a comment:


  • thanks it working now
    See more | Go to post

    Leave a comment:


  • robin1983
    started a topic How to allocate in dynamic array in PHP
    in PHP

    How to allocate in dynamic array in PHP

    Dear All,

    I have a query regarding the array. The problem is that I want fetch some value from a table and store the value in an array and again want to run one more query on the basis of the earlier value which I have stored in the array.

    For more details kindly find the below details.

    table name: abc, it contain colum c1, c2, c3, c4,

    now I want run a query to fetch distinct value of...
    See more | Go to post

  • When the condition is false the statment insdie false condition is not showing.

    Dear All,

    I have a simple login script, when the user put the correct information the loop is working but when they put wrong informtion the loop is not working. Kindly find the below code.

    The statement after if($result<0) is not working.
    Code:
    <?php
    include("dbConfig.php");
    if(isset($_POST['login'])){
        $userid = $_POST['userid'];
        $userpassword = $_POST['password'];
    ...
    See more | Go to post
    Last edited by Markus; Oct 31 '09, 11:56 AM. Reason: Please use [CODE] instead of [QUOTE]

  • Is it possible to fetch data from Ms-Outlook express and store to Database or Excel ?

    Dear All,

    How are you everyone! I need a help from you all. Firstly, I want to know is it possible to fetch the email details from the Outlook to Excel or Database by using PHP. MS outlook has his own feature to export the details. But, by this its not possible to extract the body of the mail. Here, I want to know, is it possible to fetch mail details like sender email, sender date, received date, subject, body of the mail etc and...
    See more | Go to post

  • How to insert line break in in data inserted from TextAera field.

    Dear All,

    Firstly I would like thank all senior and junior who helping and sharing the knowledge to us. Actually, I have a small query.

    The problem is that I have a form which have only two field. first one is Text Field and the second one is TextArea.

    What ever I faced the value from Database (mysql) entered through the TextArea field, the content are showing in the not the format which I entered. The line...
    See more | Go to post
    Last edited by Markus; Dec 2 '08, 05:17 PM. Reason: added [code] tags

  • Wamp server is not running properly showing None of the 2server runing

    Dear All,

    I am facing a problem with WAMP server. i dowonload the WAMP SERVER2.0c and installed in my system. But the problem is that none of the server is running. When i try to access the server by http://localhost, the page cannot display is getting. When I try the same in my own pc its working properly.

    It seems that the problem is due antivirus which is installed in the system. The system is having McAfree antivirus....
    See more | Go to post
No activity results to display
Show More
Working...