
fierdor
Members-
Posts
66 -
Joined
-
Last visited
Never
Everything posted by fierdor
-
Host 'xxx' is not allowed to connect to MySQL server
fierdor replied to fierdor's topic in MySQL Help
Ok that was quick and awesome! Thank you! -
Hey I am using XAMPP on Windows. I basically want to access a database running on a remote MySQL server. I have provided the IP of the remote machine. I have also edited the httpd-conf file on the remote machine. I am able to access the remote machine's phpmyadmin.. Like If i enter 172.xx.xx.xx/phpmyadmin I get the console However my application is not able to fetch any data from the database..I get this error.. Host 'xxxx' is not allowed to connect to this MySQL server in database.php on line 2 Could not connect to databaseHost 'xxxx' is not allowed to connect to this MySQL server What other permissions do i have to change?
-
Yes that did it! Just added a position:relative Thanks a lot! Learnt a new thing..I didnt know that!
-
I have a horizontal menu with background images for the anchor elements. On hover I am changing my background image which is slightly more than the size of the image in the static state.. So I want this image to be on top... However the code does not seem to work.. My hover image appears but the extra part remains hidden behind the adjacent anchor's image.. #navmenu ul li a{ background-image:url(../images/1.gif); background-repeat:no-repeat; text-decoration:none; outline:none; color:#000; float:left; margin-right:-18px; width:100px; display:block; text-align:center; padding:6px 11px; display: inline; font-size:12px; text-indent:-8px; } #navmenu ul li a:hover{ background-image:url(../images/2.gif); color:#fff; z-index:6000; } <div id="navmenu"> <ul> <li><a href="index.php">1</a></li> <li><a href="#">2</a></li> <li><a href="#">3</a></li> <li><a href="#">4</a> <li><a href="#">5</a> </ul> </div> Is it like z-index wont apply to hover state?
-
Okay thanks! But I have not used mod_rewrite before...I was going through some tutorials... Is it possible for a single file though? I am being plain lazy here..but could you post a snippet or something
-
I am using PHP to generate RSS feeds with MySQL...So basically even my RSS page has a .php extension as I am echoing out my RSS... Will it make any difference as compared to a standard .xml file..?? Or should i use some libraries and write a separate .xml file with PHP?
-
Thank you! That was an interesting read...He's stated 4 alternative solutions... However i dont think my row count is going to increase beyond ,say 50 or 100... So I assume the performance benefit will not be so noticeable,right? But that said, I will keep this in mind for future projects..In fact that entire presentation seems to be quite useful..
-
I stumbled upon a solution while googling: $random_row = mysql_fetch_row(mysql_query("select * from YOUR_TABLE order by rand() limit 1")); But anyways is it possible to generate a sequence field programatically?
-
Yeah...basically I am using it to randomise a selection in PHP: My pseudocode: 1. Count the entries 2. rand(1,count)--Randomise a selection between 1 and the count 3. Select the content corresponding to that row number.. Hence in this algo it is necessary that my serial numbers be in sequence so that I can select the content... I am game if there is some other algo which will make my life simple.
-
I need to have a sequential field in one of my SQL tables such that even if i add or delete a row the other numbers should automatically adjust and make a sequence.. Autoincrement is one option but it wont work if I delete a certain row in the table... Is it possible to have such a field?
-
I want it to look like the way it does in Firefox.. Two disjointed boxes..No overlapping..
-
Script to read exchange server mailing list mail
fierdor replied to fierdor's topic in PHP Coding Help
Is there any other way I can get these mails coming to this list archived to my database? Any suggestion for a workaround? I was thinking: 1) Check the mails of a person subscribed to this list 2) Wherever the 'to' field has 'alias' just store those emails Is it a good solution? I am not able to get any resources on how mailing lists are maintained on a MS Exchange server.. Ideas,anyone?? -
Ok I tried that...The problem persists..My code now looks like this: <html> <head> <style> #wrapper { width:856px; background-color: #ffffff; height:700px; margin:auto; } #child1 { width:360px; height:250px; color:#000; text-align:center; } #parent{ width:400px; height:250px; margin-left:50px; border:1px solid #06f; } #child2 { width:400px; border:1px solid #06f; } </style> </head> <body> <div id="wrapper"> <div id="parent"> <h4>Parent</h4> <div id="child1"> Child 1 </div> <div id="child2"> <h4>Child 2</h4> </div> </div> </div> </body>
-
Script to read exchange server mailing list mail
fierdor replied to fierdor's topic in PHP Coding Help
I am able to get a list of mails of my inbox... But my question is that there is a mailing list with an alias...How do I access mails sent to that alias? Like my URL is something like: http://exchang.server.com/exchange/username/Inbox So where are the mailing lists stored like this? And also there wont be any authentication for a mailing list right? -
No I have..See near child 1.. I have indented the code here: <html> <head> <style> #wrapper { width:856px; background-color: #ffffff; height:700px; margin:auto; } #child1 { position:relative; width:360px; height:250px; left:-20px; color:#000; text-align:center; } #parent{ width:400px; height:250px; float:left; position:relative; left:50px; border:1px solid #06f; } #child2 { float:left; width:400px; position:relative; border:1px solid #06f; } </style> </head> <body> <div id="wrapper"> <div id="parent"> <h4>Parent</h4> <div id="child1"> Child 1 </div> <div id="child2"> <h4>Child 2</h4> </div> </div> </div> </body>
-
Ok here it is: <html> <head> <style> #wrapper { width:856px; background-color: #ffffff; height:700px; margin:auto; } #child1 { position:relative; width:360px; height:250px; left:-20px; color:#000; text-align:center; } #parent{ width:400px; height:250px; float:left; position:relative; left:50px; border:1px solid #06f; } #child2 { float:left; width:400px; position:relative; border:1px solid #06f; } </style> </head> <body> <div id="wrapper"> <div id="parent"> <h4>Parent</h4> <div id="child1"> Child 1</div> <div id="child2"> <h4>Child 2</h4> </div> </div> </div> </body> I was just trying to post the relevant code previously.. Anyways now i am beginning to understand the nuances of CSS and how some properties affect others drastically.. Will keep that in mind before posting in the future.. Sorry if I have wasted your time The above code recreates my exact problem...
-
I have closed it in my code..But still that issue is there...
-
Script to read exchange server mailing list mail
fierdor replied to fierdor's topic in PHP Coding Help
Ok...But how do i access the mailing list? -
I did not get you...They are nested..So the opening parent div closes after the child div Or am I missing something ?
-
Are there any resources you can point me to for reading mails sent to a mailing list through PHP scripts? I have to access a Microsoft Exchange server... Any scripts which may help me?
-
I have two divs one nested inside the other...I apply a border to both divs.... In IE6 I see a border around the entire parent div and a border around the child div In Firefox I see 2 disjoint divs,both bordering the respective text in the divs.. I have attached images Sample code: <div id="parent" style="border:1px solid #456" Some text <div id="child" style="border:1px solid #456"> Some text </div> </div> So is there a solution to the IE6 problem? [attachment deleted by admin]
-
Never mind..The negative top margin solves the problem and I am not getting any other side-effect error.. Thank you!
-
1)Originally it was inside. 2)But that caused the height problem where I was getting some weird colour 10px height line below the header and my navmenu was getting displaced in Internet Explorer.
-
1) The diagram in the previous post is what I have now. 2) What I want is the empty area to be eliminated and this: ************************************************************************* Header ###################### navmenu ###################### ************************************************************************ 3) My solution to this problem is giving it a negative margin top:-100px But this makes the elements below the menu further go down and there is a empty space in between 4) Is there a better way to handle this? 5) I solved or rather worked around the HEIGHT problem by removing the navmenu div from the header (i.e. the nesting) and put the navmenu div below the header Am i clear now?