Jump to content

atitthaker

Members
  • Posts

    52
  • Joined

  • Last visited

    Never

About atitthaker

  • Birthday 05/21/1983

Profile Information

  • Gender
    Male
  • Location
    Banglore, India

atitthaker's Achievements

Member

Member (2/5)

0

Reputation

  1. Hi, I am having problem invoking an aspx page from PHP. I have installed PHP over windows XP and Windows 2003 Server. Curl version for Windows XP is libcurl/7.16.0 OpenSSL/0.9.8g zlib/1.2.3. and vista is having libcurl/7.16.0 OpenSSL/0.9.8i zlib/1.2.3. As you can see the only difference between both the environment is openSSL version. My XP system is able to invoke the page correctly but windows 2003 Server does not. Actually, I have hosted site at my local server and site is having 2 different host header values. For one host header value 2003 server is working fine but for another one, it is not. For Windows XP it is able to open page from both Host header values. Thanks Atit
  2. Hi, Got the solution after a long fight... was having problem with Database components. Got the same dll for all the places and I got connected in a minute. Thanks Atit
  3. It gives me only one message: Warning: mssql_connect() [function.mssql-connect]: Unable to connect to server: node200 in E:\php_scripts\mssql_connection.php on line 28 I do not know what is going wrong here... I have also installed MS SQL Server Client tools on my system which is the web server for the application. Thanks Atit
  4. Hi, I am trying to connect to MS SQL Server 2005 using PHP. But I am unable to connect to the SQL Server. Following things are in place. -- mssql extension is enabled in PHP and I can see MSSQL details in php info. -- named pipes and TCP/IP is enabled in SQL Server Configuration -- mssql.allow_persistent = On in php.ini -- I copied ntwdblib.dll to /windows directory. I am not sure what is going wrong but I am unable to connect to MS SQL Server 2005. thanks Atit
  5. Actaully i want that when we click on a select box in a I.E .. a drop down list comes. In that i want that when the user navigates through the options some of the options should not get highlighted.And Also should not be get selected. I am looking for an attribute with the help of which i can do this. for eg on writing selected in an option tag ,that value will get selected. similarly i want an attribute which when written in the option tag ...disables that option or make that unselectable.
  6. I want that some of the option value should not get highlighted and selected in the drop down list. Can i achive this by setting any attribute or property.
  7. Ya i have applied the td borders using the css.
  8. I wana render info in a table. Some of the TD's dont have data.There the cell boundary does not appear.I cant use in this case. Can anybody provide me a alternate solution.
  9. If possible, you can also turn buffering on, but this shall work only if the output is being sent from a single page. If you are trying to output from one file and that file is including some other file, check with the second file, it may be containg some space before output is sent, which is sent prior to header. And results in the error you are getting. Hope this helps
  10. If the "." in the beginning is going to be there every time, you can simply take substring of the given string. <? $str="Test"; if($str[0] == ".") { $str = substr($str,1); } ?> I think this shall solve the problem.
  11. Hi @ll, I have two tables t1 and t2, now I am doing t1 LEFT JOIN t2. In the where clause I need to test some condition against table t1. So I am putting the condition like t1.fld_name = <some_val>. and this does not match with any row. If I am having count(t1.field1), it shall get count "0" for that row, but it is not generating result for that row. As the condition I am putting, is being generated dynamically and I can't append it to the JOIN. What is the solution for above stated problem?? Thanks
  12. What I mean to say is: When user performs some action, client mail application opens, with new mail ready to be sent. In this mail, I want to display hyperlink but that hyperlink shall be displayed as shown in the screenshot in prev post. Like, link shall not be displayed literally but it shall be displayed as label and it can be clicked and navigated to the address it refers to.
  13. Hi @ll, I want to send hyper link by mail. I am able to send link to the user but it is displayed literally and not like label which redirects to the specified URL. So when the mail is created, it gives new mail window as: http://some_domain_name/and/so/on/test.html. Instead of this I want to display same stuff as: "click here", which is a hyperlink and it points to the address mentioned above. I tried to mention body but it is displaying whatever I mentioned as pure text and HTML is not being translated. I have attached the screen, so you can better Idea of what I want. Thanks. [attachment deleted by admin]
  14. Thanks for reply... If you have got my point, Do you know any other way to implement the same thing??? I want to make a <div> which acts as a dialog and it won't allow you to select anything on the page beneath it... So how can I do that.
  15. As far as I know and understand, according to OOP concept, protected member shall be accessible to it's next level child but not further. So in the example below, it shall be accessible to class B but not class C. In child class protected member's visibility shall reduce to private and shall not be accessible in further children... Isn't it the case??
×
×
  • 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.