8,966 Posted Topics

Member Avatar for Steveorevo

We've recently switched from Sifr To Cufon, which appears to function much better. The integration is easy, only the rendering of the javascript from a font file takes a little time.

Member Avatar for pritaeas
0
129
Member Avatar for Kystadio

How can there be a post in your table equal to or later then the current time ?

Member Avatar for pritaeas
0
98
Member Avatar for asmikwen

Perhaps Navicat (navicat.com). Been using it several years. Data migration is one of it's features.

Member Avatar for bgkalbente
0
66
Member Avatar for keval007

`college_id` int(100) NOT NULL The second value row in your insert tries to add all blank values, which is not allowed. You should remove it, so the insert looks like this: [code] INSERT INTO `crispwer_unipro`.`users` ( `user_id` , `user_name` , `password` , `email` , `activationkey` , `status` , `fname` , …

Member Avatar for pritaeas
0
122
Member Avatar for Donno_db2
Member Avatar for sitie_aniem

Wider as in width. A telephone plug is several mm smaller than an ethernet plug. This is because the telephone uses 6 cables, and ethernet 8. [url]http://en.wikipedia.org/wiki/RJ11,_RJ14,_RJ25[/url] [url]http://en.wikipedia.org/wiki/Ethernet[/url]

Member Avatar for pritaeas
0
76
Member Avatar for silursh

When you invoke the mail() function, it tries to connect to the smtp server, as specified in the php.ini I don't know where you are trying to connect to, but not all mail servers allow this. If you are trying to connect to localhost, then you need a local smtp …

Member Avatar for pritaeas
0
105
Member Avatar for 68thorby68

[code] $query = 'SELECT id FROM user WHERE username="$uname"'; [/code] Since you are using single quotes for this string, $uname is not replaced with the value of your variable. You should use this: [code] $query = "SELECT id FROM user WHERE username='$uname'"; [/code] Strings with double quotes are parsed (for …

Member Avatar for 68thorby68
0
99
Member Avatar for kenwestphal
Member Avatar for pritaeas
0
224
Member Avatar for yonker
Member Avatar for pritaeas
-2
84
Member Avatar for SKANK!!!!!

Where is the information coming from ? In sites I've made, the RSS feed is generated by PHP and a template to show the 10 latest news items. The latest 10 should suffice, because most readers store the history if you want, so there is not need to show all …

Member Avatar for zmiunzi
0
222
Member Avatar for hno
Member Avatar for bhbbhb

This site is in flash. If you want to reproduce it without flash, I suggest you have a look at jQuery.

Member Avatar for ithelp
-1
55
Member Avatar for phid2002
Member Avatar for toasty525

Use this query. Replace 15 with the actual score from your user. [code] select score from table where score > 15 order by score asc limit 1 [/code]

Member Avatar for pritaeas
0
143
Member Avatar for lifeworks

Correct. See this link on how you can make it work: [url]http://php.net/manual/en/language.variables.scope.php[/url] Although I'd recommend passing both arrays to the function, instead of using global variables.

Member Avatar for network18
0
72
Member Avatar for anup.maverick

[icode]RandomNumber = New System.Random().Next(1, 100);[/icode] You'll have to check for duplicates yourself. Any particular reason you want to use this as a PK ?

Member Avatar for anup.maverick
0
95
Member Avatar for Voulnet

Here's a nice collection: [url]http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf[/url]

Member Avatar for Voulnet
2
197
Member Avatar for pcc_support
Member Avatar for genieuk

[code] if ( !preg_match('/^\w[\w_\-\*\.]{2,14}$/', $_POST['username'])) [/code] \w matches letters and digits {2,14} because you did not count the first \w An iterator applies only to the previous element, if no specific grouping applies. I was working on this, I think it should work (at least in regexbuddy it does) [code] …

Member Avatar for Kruptein
0
109
Member Avatar for zvn

I think the for (var i in ...) is the problem. My guess is i is not an integer, but an object (element). I think you should store the document.getElementsByClassName('someclass') in an array and loop through it using for (i=0; i<array.length;i++). An other option would be to use jQuery, which …

Member Avatar for zvn
0
497
Member Avatar for abby524

Next time, use code tags when posting code. This is very hard to read. Anyway, this code: [icode]If Page.IsValid Then[/icode] should be preceded by [icode]Page.Validate[/icode]

Member Avatar for pritaeas
0
265
Member Avatar for venkat0904

Is PEAR:Auth not an option ? Think XML is the only one not supported yet by default.

Member Avatar for venkat0904
0
77
Member Avatar for tchaves

Here is an explanation of how to send/receive xml through curl: [url]http://forums.digitalpoint.com/showthread.php?t=424619#post4004636[/url]

Member Avatar for pritaeas
0
144
Member Avatar for sam1

[url]http://www.smarty.net/manual/en/language.function.include.php[/url]

Member Avatar for pritaeas
0
150
Member Avatar for aruti

I've not yet come across this kind of service. This would be very cumbersome, because a lot of coordinates would point to the same address.

Member Avatar for chrishea
0
78
Member Avatar for shishtawitch

Not quite sure what you mean... You cannot put jquery code inside php code. If you mean something else, please try explaining with some more detailed code.

Member Avatar for gamingdrunk
0
116
Member Avatar for miguel1810

This code is wrong: [code] if ($key != 'subject' && $key != 'company') { if( empty($_POST[$value]) ) { echo 'PLEASE FILL IN REQUIRED FIELDS'; exit; } } [/code] because $key will be an integer (so it will always evaluate to true), but that wouldn't explain your problem. Do you perhaps …

Member Avatar for shishtawitch
0
160
Member Avatar for Carrots

The XmlDataSource is a .NET component, it won't run on a linux server. What language are you using ? PHP, Perl, Python, Ruby ?

Member Avatar for pritaeas
0
108
Member Avatar for rajeesh_rsn

The string value is stored in a session variable, not as a hidden field in the form, as that would defeat it's purpose.

Member Avatar for pritaeas
0
55
Member Avatar for Alba Ra

Pro: If you can retrieve your (database, rss) data in XML then with XSLT you can easily turn it into an (X)HTML page. Example: If you want to show part of an external RSS feed on your website, then with XSLT it can easily be transformed into a structure that …

Member Avatar for Alba Ra
0
279
Member Avatar for jino

As soon as you refresh, the entire page is reloaded (and intialized). I think the only way to fix this is to let jQuery use cookies to store what is selected. There is a cookie plugin on the jQuery website.

Member Avatar for pritaeas
0
45
Member Avatar for emmaburge

I checked niftyplayer, but it does not work without flash. The player itself is in flash and needs to be loaded for the javascript to work.

Member Avatar for pritaeas
0
91
Member Avatar for vishalonne

The first notice you get is because $_POST[dtext] may not have been set. This will result in an invalid query, after which it will fail, and put false in $result. Since $result is false (because the query failed), mysql_fetch_array cannot be called. The solutions would be: 1. Check if $_POST['dtext'] …

Member Avatar for venkat0904
0
153
Member Avatar for naziatarannum

You'll need to store it somewhere, e.g. in a database. Another option would be to use a third party tracker, e.g. google analytics.

Member Avatar for naziatarannum
0
82
Member Avatar for FeralReason

jQuery offers a lot of tools, examples and plugins to help you with this. Maybe something like this: [url]http://jonraasch.com/blog/contact-pop-jquery-plugin[/url]

Member Avatar for pritaeas
0
74
Member Avatar for codewalkz

The LIMIT always applies to the end result of the query. Even without the limit, the count(*) will only return 1 result row. I'm not sure of what you try to achieve. If you want the count per sponsor, then you could try a union: [code] SELECT COUNT(*) FROM agents …

Member Avatar for pritaeas
0
145
Member Avatar for calina

I don't know why your specified a callback for the fadeIn, it doesn't appear to do anything. If you change success to the following, what happens ? [code] success: function() { $('#weekly_poll').html("<div id='message'></div>"); $('#message').html("<h2>Thanks for your vote!</h2>").hide().fadeIn(500); } [/code]

Member Avatar for Practicality
0
164
Member Avatar for irafaS

In most cases there would be a file in the root of the website called favicon.ico If it is not there, you can check the html header for the meta link tag "shortcut icon".

Member Avatar for irafaS
0
46
Member Avatar for characteredu
Member Avatar for dmkc

The if ($count) is inside the for loop, which doesn't get executed if there are no records found. Place the if ($count == 0) outside the for loop to fix it.

Member Avatar for dmkc
0
104
Member Avatar for mr_scooby

Here is an example of how you could do it using jQuery: [url]http://www.pritaeas.net/public/jquery/enable-submit/[/url]

Member Avatar for mr_scooby
0
736
Member Avatar for yaragalla_mural

Asynchronous just means that a call is made to e.g. a function, but that the code (next statement) won't wait until a response is received.

Member Avatar for yaragalla_mural
0
336
Member Avatar for jscott.1974

What exactly are you referring to ? A webpage, or the application itself ?

Member Avatar for pritaeas
0
43
Member Avatar for bigjoke

The .sql file is just a dump of the database. If you make changes to this file, it won't affect the database itself. You either need to use e.g. phpMyAdmin, a database tool or import the sql file again to change the database. What php files you need to change …

Member Avatar for pritaeas
0
142
Member Avatar for SKANK!!!!!

This is the header I'm using: [code] <?xml version="1.0" encoding="ISO-8859-1" ?> <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> [/code]

Member Avatar for SKANK!!!!!
0
130
Member Avatar for ayesha789
Member Avatar for Devoted Hosting
0
78
Member Avatar for CRAFTYARTS

Table 'craftyartsalesmailcatcher.swd_account' doesn't exist You're missing a table. Make sure your database is correct.

Member Avatar for pritaeas
0
49
Member Avatar for muralibobby2015

Found this link, and made it into this: [url]http://expressionengine.com/forums/viewthread/128806/[/url] [code] <html> <head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function() { var total = 0; function calcTotal() { $("input:checked").each(function() { var value = $(this).attr("value"); total += parseFloat(value); }); } calcTotal(); $("input:checkbox, input:radio").click(function() { total = 0; calcTotal(); $("input#total").val(total); }); }); </script> </head> …

Member Avatar for mangel.murti
-1
164
Member Avatar for agam360
Member Avatar for peter_budo
0
178

The End.